Telephone directory or Contacts are most important thing for everyone in this world and no one would like to loose information like phone numbers, addresses etc..
Generally if we want to import or transfer contacts from one gizmo to another or to create a backup of contacts, we use " VCARD " feature. In this feature, each contact is saved in a separate vCards(.vcf file) format. If you have too contact files (.vcf files) and you want to transfer them into some gizmo or any online account it becomes a hectic task.
At this moment, converting or combining them into one single contact (.vcf) file is useful and handy, so instead of carrying thousands of contact files its better to carry one single file wherever you need. Merging of contact files can done easily and manually and within few minutes using COMMAND prompt.
1. If you're using windows:
GOTO Command prompt. (Windows_Key + R) - Run: cmd
2. Change to the directory where all your VCFs are stored
d: cd \my_vcfs - Location of all ur .vcf files
3. Run this command
copy /B *.vcf all_in_one.vcf
Generally if we want to import or transfer contacts from one gizmo to another or to create a backup of contacts, we use " VCARD " feature. In this feature, each contact is saved in a separate vCards(.vcf file) format. If you have too contact files (.vcf files) and you want to transfer them into some gizmo or any online account it becomes a hectic task.
At this moment, converting or combining them into one single contact (.vcf) file is useful and handy, so instead of carrying thousands of contact files its better to carry one single file wherever you need. Merging of contact files can done easily and manually and within few minutes using COMMAND prompt.
1. If you're using windows:
GOTO Command prompt. (Windows_Key + R) - Run: cmd
2. Change to the directory where all your VCFs are stored
d: cd \my_vcfs - Location of all ur .vcf files
3. Run this command
copy /B *.vcf all_in_one.vcf