This fork add support for extracting multipart zips like .z01, .z02, ..., .zip.
The work is based on https://github.com/alexmullins/zip
The work related to Standard Zip Encryption is based on https://github.com/yeka/zip
-
Call
OpenReaderand pass the filename of the volume with the.zipsuffix to open the entire multipart archive. (Totally same toalexmullins/zip) -
Call
NewMultipartReaderand provide each volume as aSizeReaderAt. The volume with the.zipsuffix must be the last one in the sequence. -
Defination of
SizeReaderAt:type SizeReaderAt interface { Size() int64 io.ReaderAt }