71

How do I unzip a split zip file?

In Terminal, I wrote: unzip filename.zip and it did not unzip this file.

Terminal wrote:

$ unzip filename.zip
Archive:  filename.zip
warning [filename.zip]:  zipfile claims to be last disk of a multi-part archive;
  attempting to process anyway, assuming all parts have been concatenated
  together in order.  Expect "errors" and warnings...true multi-part support
  doesn't exist yet (coming soon).
file #1:  bad zipfile offset (local header sig):  4
file #2:  bad zipfile offset (local header sig):  98
file #3:  bad zipfile offset (local header sig):  471
file #4:  bad zipfile offset (local header sig):  6635222

Double clicking of this file creating filename.zip.cpgz

What can I do?

Hennes
  • 65,804
  • 7
  • 115
  • 169
Kris
  • 711

12 Answers12

74

This was the straight forward and only solution that worked for me on OS X (taken from here).

1. To create a split zip archive (a series of files named zip, z01, z02...), run following command in Terminal:

zip -s 100m -x "*.DS_Store" -r split-foo.zip foo/

2. To extract a split zip archive (a series of files named zip, z01, z02...), run following command in Terminal:

First, combine the split archive to a single archive:

zip -s 0 split-foo.zip --out unsplit-foo.zip

Extract the single archive using unzip:

unzip unsplit-foo.zip
22

Just cat all zip files in sequence to a single file and use unzip command on that.

For example:

cat file.zip.001 > s.zip 
cat file.zip.002 >> s.zip
cat file.zip.003 >> s.zip

unzip s.zip 
techraf
  • 4,952
Malls
  • 321
  • 2
  • 2
18

I hit this issue when trying to re-assemble a large directory downloaded from Google Drive.

Similar to this issue, if you are dealing with a set of zip files that do not include numbered file extensions (foo.z01, foo.z02, etc) and are simply multiple zip files that should be unarchived together into the same directory, the following worked for me:

unzip '*.zip' -d /path/to/unzip/destination
klewis
  • 181
  • 1
  • 3
17

additionally to this answer if you have split binaries, like file.zip.001, file.zip.002 ... you may just need to combine the files e.g. using cat command:

cat file.zip.* > single.zip
5

Just run this command on the bash prompt to concatenate the zips.

for i in `seq 1 5`; do cat file.zip.0$i>>uncut-version.zip; done

the above example has 5 parts.

Then unzip the file using your favourite method

unzip uncut-version.zip
4

Tested on a 10.8.5 Mac OS

  • Use Stuffit Expander free version
  • Just drag the last file (the one with .ZIP extension) in Stuffit
  • Wait for a while because it seeme Stuffit re-build first the complete file
  • See all your files unzipped
3

In my case, within OS X 10.11.6, i had a multipart archive with extensions

.z01
.z02
... (etc)
.zip

Using

zip -s 0 in.zip --out out.zip

did get me a single zip. It did not extract with unzip, but did with 7zip, installed via MacPorts:

port install p7zip
7za x out.zip
2

What worked for me is very simple: Open the .z01 file with the free Mac application The Unarchiver (available from the Mac App Store). It handles the extraction nicely.

Albin
  • 11,950
2

This was the most simple solution I could find:

find ./ -name "*.zip" -exec unzip {} \;
fguillen
  • 391
0

Just Unzip all files using terminal unzip filename001.zip, filename002.zip that will automatically add files in one folder.

0

I used Keka. I had several files with extensions like .z01, .z02, .z03 and zip. I just extracted main zip with Keka and it did it's job perfectly.

0

in MacOS 10.13.6 High Sierra, working way is to:

cat filename.z01, filename.z02, filename.z03 filename.zip > unsplited_foo.zip

and after that use unzip:

unzip unsplited_foo.zip

NOTE: be careful order of files in cat is matter

Boris Azanov
  • 101
  • 2