T
Tom Parson
I have a textfile where hundereds of files (with path) are listed.
Now I want to add all these files to a (win)zip archive.
How do I do this from the command line ?
Using a DOS batch procedure with a command like:
for /F "tokens=*" %%* in (myfiles.lst) do zip "myarchive.zip" "%%*"
is not useful since the zip program needs to close and re-open the zip archive
for each file separately which is rather time consuming (20 times longer
than adding all files in one step)!
Is there a syntax which allows me to add all files in one step?
Tom
Now I want to add all these files to a (win)zip archive.
How do I do this from the command line ?
Using a DOS batch procedure with a command like:
for /F "tokens=*" %%* in (myfiles.lst) do zip "myarchive.zip" "%%*"
is not useful since the zip program needs to close and re-open the zip archive
for each file separately which is rather time consuming (20 times longer
than adding all files in one step)!
Is there a syntax which allows me to add all files in one step?
Tom