To do this first of all you need to concatenate all the VCFs in to a single file...
If you're using windows:
# open command prompt
# change to the directory where all your VCFs are stored
eg : d:
cd my_vcfs
# Run this command
copy /B *.vcf contacts.vcf
Then just upload the "contacts.vcf" file to google and it will grab all your contacts in one go.
# concatenate files into a single .vcf
Then just upload the "contacts.vcf" file to google and it will grab all your contacts in one go.
If you're using windows:
# open command prompt
# change to the directory where all your VCFs are stored
eg : d:
cd my_vcfs
# Run this command
copy /B *.vcf contacts.vcf
Then just upload the "contacts.vcf" file to google and it will grab all your contacts in one go.
If you're on Linux, OSX, etc., you can use
# change directory
cd vcf_directory
cat *.vcf > contacts.vcf
Then just upload the "contacts.vcf" file to google and it will grab all your contacts in one go.
No comments:
Post a Comment