csv2vcf icon indicating copy to clipboard operation
csv2vcf copied to clipboard

Feature request: Be able to store all contacts in a single vcf

Open arielenter opened this issue 4 years ago • 2 comments

I had have wished it had a way to save all contacts in a single vcf, since that was my original intention. Any way, thank you for your attention.

arielenter avatar Oct 15 '20 18:10 arielenter

vcf inherently accepts multiple cards in same file, each card is placed between BEGIN:VCARD and END:VCARD. So on your end you can just concatenate all files and it should work. at least works for me in iCloud. Just make sure you add a new line since file ends lack it.

You should get a file like:

BEGIN:VCARD
jada jada jada
END:VCARD
BEGIN:VCARD
jada jada jada
END:VCARD
BEGIN:VCARD
jada jada jada
END:VCARD

haphaeu avatar Sep 07 '22 11:09 haphaeu

Hi. I made a bash script to get it, but I figure some people wouldn't be as tech savvy.

arielenter avatar Sep 07 '22 13:09 arielenter