↧
Answer by fred78800 for Analyzing properties of a ZIP file
The zipinfo command can actually be run on Windows by using the unzip -Z command, as stated in the info-zip archive's documentation. Make a "zipinfo.bat" batch file with this command inside: unzip.exe...
View ArticleAnswer by sleske for Analyzing properties of a ZIP file
zipinfo (from InfoZIP) will tell you a lot about a file. Sample output from zipinfo -v (using the "verbose" option -v): Archive: /tmp/test.zip There is no zipfile comment. End-of-central-directory...
View ArticleAnalyzing properties of a ZIP file
I have a ZIP file, and I want to determine how it was compressed (the specific algorithm, properties used to apply that algorithm, etc.). How can I do this?
View Article