WinZip allows you to print the contents of a zip archive by opening the archive and selecting print from the file menu.
Is there an open source/freeware zip utility that will do that?
with 7zip you need to use a batch file calling the 7z.exe thus:
FOR /F "tokens=* delims=" %%A in ('dir /b /s *.zip') do (7z.exe l -r "%%A" >> listing.txt)
I want something that is native to the zip utility. Is a paid utility the only option?