Zip into separate files

file managementzip

I need to separate a huge directory into multiple .zip files that are not interdependent on each other. So, instead of:

  • file1.zip
  • file2.z01
  • file3.z02

I would like the following set of files instead:

  • file1.zip
  • file2.zip
  • file3.zip

I wish to open each .zip file separately. Preferably I could state a maximum file size of 2GB per file that each of these .zip files will not exceed.

Anyone have a good idea?

Best Answer

My technique for this is not tools based, but very simple (apologies if you are looking for a tool)

  1. select files in the folder until the total size is almost 2GB
  2. right-click for context menu
  3. add to zip file
  4. name (file1.zip, file2.zip etc)
  5. repeat until all files in folder are zipped
Related Question