I'm writing a script that is adding some files to an existing zip with 7zip, but if there is a file match the file inside the zip will be overwritten. I don't want that, if the file with the same name is already there i want to skip it.
My code now is something like that:
%zipPath% a %zipfile% "%%~F"
Any ideas? :)