澳洲大头 发表于 2012-9-15 19:11:58

Combine vcf files into one file

VCF:


This is the most commonly used contact format. its called "visiting card file / format". You will find this type of contact files when you try to backup your entire contacts from your mobile to memory card. Your mobile will save every contact in one .vcf file. If you want to transfer all your contact from mobile to any other software you have to manually transfer each and every file. so What is the solution to transfer all these contacts at once?
Yes - you need to concatenate or merge all the VCFs in to a single file


1. if you're using windows:

Go to Command prompt. (Windows_Key + R)


run: cmd


2. change to the directory where all your VCFs are stored
            d:
         cd   \my_vcfs

3. Run this command
                  copy   /B   *.vcf   all_in_one.vcf
页: [1]
查看完整版本: Combine vcf files into one file