How could I compress a folder into splitted archives (individual ZIPs)?
- by Shiki
I have to compress folders into ZIP packages. But the size is limited, only a ~10-15mb is allowed to used per package. Every major application comes with the "Split archive to..." option, which does what I want... except I can't uncompress them one-by-one. (You need them all, and then use the .7z, .rar, .zip file to uncompress.)
Here is an example. FolderX is 35 mb. That makes 4 packages, 4 zip files.
The normal split function would give me: folderx.zip, folderx.zip.001, folderx.zip.002, folderx.zip.003
What I would really need is: folderx_1.zip, folderx_2.zip, folderx_3.zip, folderx_4.zip
(Individually uncompressable files/packs.)
I can code this down into an app, but it's a waste of time if such a utility already exists.