I received 3 emails each containing part of a zip file. The extensions end in .z00, .z01 and .z02. (Emailed as such to get around the typical 10Mb attachment limit per email.)

I have put all 3 files into one directory.

I can use both 7-zip and WinZip to open the first file (the .z00 file) and it lists the contents of the zip but when trying to extract the files both programs are reporting errors.

What is the least error prone way of reassembling this zip and getting to the files?

link|improve this question

feedback

5 Answers

up vote 4 down vote accepted

It's fairly safe to assume that the file parts just need to be concatenated together.

The easiest way to do this is within 7-Zip - navigate to the folder in the 7-Zip file manager, right-click on the first file in the sequence, and select "Combine Files..." from the context menu.

It can also be easily done on the command line.

On Windows:

copy /B input.z* output.zip

Or Linux (or if you've got Unix command line tools on Windows using Cygwin or GnuWin32):

cat input.z00 input.z01 input.z02 > output.zip
link|improve this answer
feedback

My guess is that they were just split directly, with no extra information, so you should be able to just concatenate them and end up with a full zip file. This thread has some links to tools that can concatenate files.

link|improve this answer
feedback

Have you tried to unzip all the files? Usually, one have to unzip just one (the first ou the last).
Maybe, if you change the extesion of the .z00 to .zip, will be able to unzip all.

link|improve this answer
yeah, that works for me too – Rishi Jul 30 '09 at 19:07
feedback

Usually there is one *.zip in the set and a couple of *.z??. If you open the *.zip the others are unziped as well as long as they are in the same directory.

If this does not work try what therefromhere said, or if you are on windows:

copy /B yourfile.z00 + yourfile.z01 + yourfile.z02 yourfile.zip

link|improve this answer
feedback

Usually when i receive split files , i unzip the first file only.
Doing so gave me the complete file, I used 7-zip

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.