Is there any archive utility that will display an archive file’s contents? Suppose you have several dozen archives, and each of this contains a few dozen phone recordings. Without a list, you’d have to go uncompress archives one by one to find just one recording. But a list would let you scan the archives and find the one that has that one recording. Even better, you could extract one file at a time without uncompressing the whole archive.
Is there any such tool? It’s been years since I’ve looked for a new compressor, so this might be standard by now.
I haven’t looked for GUI archiver tools for a long time, but if you are comfortable with the command line, macOS include the Info-ZIP utilities for accessing zip files.
The key utilities in this suite are zip, unzip and zipinfo. Run any of them without parameters to get a quick summary of the options or type man followed by the command (e.g. man zip or man unzip) to view the manual page.
To view the contents of a zip file, any of these should get the job done:
The nice thing about command-line tools is that they are easily scriptable. So you can, with a minimal amount of work, run them against a directory tree full of files, filtering the output for the filename(s) you care about.
Either you installed third-party software, or this is new for macOS Sequoia. On my system (running Sonoma 14.6.1), quick-look on a Zip file just shows the archive’s name, icon, size and date.
@gingerbeardman helped me figure out why Quick Look generates a list of files in .zip archives on my machine. A very long time ago, I put WinZip Mac on my computer. One of WinZip’s features is enhancing Quick Look just like BetterZip.
I use Path Finder for this purpose (both compress/decompress and viewing contents), but if you don’t already use Path Finder, it’s not worth paying for just for that when there are free options for managing archives.
Hmm, interesting stuff here, including Info-Zip. The last time I fooled with command lines was years ago. But what the heck, I’ll give it a try. Thanks, everyone.
BetterZip 5 is good! I had forgotten that I had it, mostly because I was too lazy to use it well in favor of simpler apps. But upon second glance, it actually fits the bill completely. Thanks, Gordon Meyer.