I have a zip file with many directories and files inside of it. I'd like to determine which files are taking up the most compressed space in the archive. Anyone know of a handy mechanism to do this?
|
feedback
|
|
Any typical zip utility such as 7-zip will display the file system within the zip file in a flat manner; versus hierarchical. This will allow you to sort the files based on size providing the data you are looking for. | |||||||
feedback
|
unzip -vthrough awk. – Ignacio Vazquez-Abrams May 17 '11 at 20:00