In C#, I\'m using the DotNetZip I have a zip called \"innerZip.zip\" which contains some data, and another zip called \"outerZip.zip\" which contains the in
This exception occurs because the CrcCalculatorStream
stream that OpenReader
creates is not seekable, and ZipFile.Read(Stream)
tries to seek while opening the zip file.
The nature of zip compression prevents seeking to a location in the zipped content, the content must be decompressed in order.
One way around this would be to extract the inner zip file to a MemoryStream
and then load that via ZipFile.Read
.
MemoryStream ms = new MemoryStream();
outerZip["innerZip.zip"].Extract(ms);
ms.Seek(0, SeekOrigin.Begin);
ZipFile innerZip = ZipFile.Read(ms);
innerZip["Songs\\IronMaiden"].Extract(tempLocation);