How do I reassemble a zip file that has been emailed in multiple parts?

205,736

Solution 1

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.z* > output.zip

Solution 2

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

Solution 3

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

Solution 4

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

Solution 5

I had difficulty with two files I received as xx.zip and xx.z01. I simply did:

cat xx.01 xx.zip > yy.zip

followed by

unzip yy.zip

Gave a few warnings, but did the job. This was on Ubuntu Precise.

Share:
205,736

Related videos on Youtube

Guy
Author by

Guy

Updated on September 17, 2022

Comments

  • Guy
    Guy over 1 year

    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?

    • A.M.
      A.M. almost 11 years
      Many of the answers point out that all you should need to do is unzip the first file while the others are in the same folder (and that concatenation should not be required). I remember split files where the first (or last?) file was .zip instead of .z##. Changing the file extensions to match that pattern might get it working properly. (Try changing your .z01 to .zip, and if that does not work, try also changing your .z02 to .z01 and your .z03 to .z02. If that doesn't work, try ending the series with .zip (starting with either .z01 or .z00).
  • Rishi
    Rishi almost 15 years
    yeah, that works for me too
  • Mostafa Hamed
    Mostafa Hamed over 10 years
    Please re-read the question, OP has advised he is getting an error when trying to working with the set as a whole
  • Olli
    Olli about 10 years
    This certainly isn't 'the least error-prone' alternative.
  • Amir Dora.
    Amir Dora. over 2 years
    In my case for windows : 7zip did not work, but manual cmd command did work. Thanks