i have a single file that's over 100 Mb
- some-archive.bin
i've used 7z to create multiple volumes of this single file (using zip format). the resulting volumes look something like the following.
- some-archive.zip.001
- some-archive.zip.002
i need to use apache ant v1.9.3 to unzip all these volumes to recover the original file. i tried something like the following, which didn't work.
<unzip src="some-archive.zip.001" dest="output-dir"/>
is this something that is not supported out of the box by ant? meaning, will i have to write my own ant task to accomplish this?