The existing .vcf file will be overwritten.
$vCard->export('./file/export/destination.vcf');The existing .vcf can be overwritten or appended.
// OVERWRITTEN
$vCardCollection->export('./file/export/destination.vcf', append:false); // APPENDED
$vCardCollection->export('./file/export/destination.vcf', append:true);