Custom ZIP/UNZIP
Posted: 19 Sep 2022 03:55
I don't know where to post this. So if anyone could help we could delete this thread when I get some useful info.
In one of my .bat files I use
Currently I use
Why I want smaller file sizes? Because I have these two files embedded in the .bat file.
I would like to have *only* the switches needed to be supported so this would probably make .exe files smaller in size.
I use maximum compress though there is no need for the maximum compression if it would make .exe file even smaller.
Any ideas where to post this 'request'?
Thanks.
Saso
In one of my .bat files I use
Code: Select all
zip.exe -r -9 -q -X -m zipfile.zip folder1 folder2
zip.exe -9 -q -X -P zippassword zipfile.zip file1 file2 file3
Code: Select all
unzip.exe -qq -t -P zippassword %local_filename% >nul 2>nul
unzip.exe -Z -1 %local_filename% >unzip.tmp
Code: Select all
zip.exe (file size is 141872 bytes):
Copyright (c) 1990-2006 Info-ZIP - Type 'zip "-L"' for software license.
Zip 2.32 (June 19th 2006). Usage:
unzip.exe (159744 bytes):
UnZip 5.50 of 17 February 2002, by Info-ZIP.
I would like to have *only* the switches needed to be supported so this would probably make .exe files smaller in size.
I use maximum compress though there is no need for the maximum compression if it would make .exe file even smaller.
Any ideas where to post this 'request'?
Thanks.
Saso