[Solved] Counting how many PNG files are in a ZIP archive
[Solved] Counting how many PNG files are in a ZIP archive
Is there any way to count how many PNG files are in a ZIP archive?
Last edited by w64bit on Sun Jan 05, 2025 8:03 pm, edited 1 time in total.
Re: Counting how many PNG files are in a ZIP archive
Untested:
Just curious: can png files - which are already compressed - be compressed even further in a zip?
Code: Select all
ext:zip zip-file-name:*.png addcol:A A-label:="# png" A:=regex_count(container-filenames:,"\.png(;|$)")
Re: Counting how many PNG files are in a ZIP archive
Perfect. Thank you very much.
Nope. I am archiving files mostly for wetransfer. To have 1 file.NotNull wrote: Sun Jan 05, 2025 7:56 pm Just curious: can png files - which are already compressed - be compressed even further in a zip?
Re: [Solved] Counting how many PNG files are in a ZIP archive
So, more like a Unix/Linux tarball. Got it, thanks!
Re: [Solved] Counting how many PNG files are in a ZIP archive
Is there any way to sum the values for "# png" column for all listed ZIP files?
Re: [Solved] Counting how many PNG files are in a ZIP archive
No, not yet..
Please try exporting the results to Excel and SUM the column.
Please try exporting the results to Excel and SUM the column.