How could I compress a folder into splitted archives (individual ZIPs)?

Posted by Shiki on Super User See other posts from Super User or by Shiki
Published on 2012-09-03T21:03:24Z Indexed on 2012/09/03 21:40 UTC
Read the original article Hit count: 163

Filed under:
|
|

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.

© Super User or respective owner

Related posts about compression

Related posts about applications