Skip to content
Advertisement

Why does compression output a larger zip file?

I really don’t understand about python compression because whenever I am trying to compress a folder or file I end up getting a very larger file 5.5 times bigger than the original file. Why does this happen? Is there any way I can compress a folder or a file with python and get an output that’s at most the size of the original file? Here is the code I am using.

JavaScript

Advertisement

Answer

Make sure that the destination .zip file is not in the same folder you are compressing, otherwise your script may be adding a copy of the file being created to itself — which obviously will make it much bigger.

Here’s a revised version of your code that will skip the archive when it’s being created in the same directory folder:

JavaScript
User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement