How do I determine the uncompressed size of a zip file without decompressing it?

Solution 1:

You can do that by using the 'unzip' command with the "list" flag:

unzip -l yourzipfile.zip

That will output a listing of every file in the zip along with its size in bytes, and the final line will be the total decompressed size in bytes.

Solution 2:

When you open a ZIP-file with the archive manager, it tells you the size of the contained files.

If you want to know how much all or some contained files are, just mark them (to mark all files: CTRL+A) and take a look at the bar on the bottom.enter image description here