Not sure how to do it as a multipart zip but you can split any file
using the command line in terminal:
split -b 300m source.zip destination.zip.split
That should generate a series of files, each 300MB in size until all of
the source file is stored in the splits. Each split file will get a
couple letters appended like aa, ab, ac etc.
To put them all back together you use the cat command:
cat source.zip.split* > source.zip
CB
On 12/28/11 11:44 PM, Gerry Cook wrote:
Hi everyone. How can i uncompress a multipart zip file, and also how
can i create a multible part zip file archive so that each part is no
greater than 300 mb for send space. Your help would be greatly
appreciated.
Gerry Cook
cheers gerry
[email protected] <mailto:[email protected]>
--
You received this message because you are subscribed to the Google
Groups "MacVisionaries" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/macvisionaries?hl=en.
--
You received this message because you are subscribed to the Google Groups
"MacVisionaries" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/macvisionaries?hl=en.