[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: [Solved] Counting how many PNG files are in a ZIP archive
So, more like a Unix/Linux tarball. Got it, thanks!