Windows – Create multiple zip files that are not dependent on each other

compressionwindowszip

I want to compress a folder into multiple zip files of 50MB each but don't want them to be dependent on each other. When I use Winzip and use the split feature it creates one zip file and the others are just continuation to it. So, that means I need all of the files to unzip the folder.

I want to unzip each file separately and I don't care if the files are of varied sizes as long as they are less than 50MB.

Best Answer

WinZip (or any modern compressing software) can't know before compressing what will be the size of compressed data. On top of that, the size of a compressed file would change (by a tiny bit) depending of the nearby files data. So if that's not theoretically impossible, WinZip is not able to do this nor any data compression software I know of, as it would involve compressing the data many times to get the closer matches. Your best hope is to manually select groups of files and compress them to get ~50MB files. And when I write "manually", you may want to try writing a script doing the work for you. But I guess 50MB is not a hard limit, and you could just use the approximation method by hand.

Related Question