DotNetZip.Semverd icon indicating copy to clipboard operation
DotNetZip.Semverd copied to clipboard

Add support for extracing from non seekable stream

Open ArnaudDebaene opened this issue 6 years ago • 1 comments

It is already possible to create a ZIP through streaming (with ZipOutputStream or ZipFile.Save(Stream).

However, it is not possible to unzip and stream the decompressed content from a non-seekable zip (ZipInputStream seeks into the input). This would be a nice addition (SharpZipLib already supports it).

Thanks!

ArnaudDebaene avatar Jun 22 '18 15:06 ArnaudDebaene

I think this is an important feature, since unzipping from a HTTP request does not seem to be a rare requirement to me.

VanCoding avatar Apr 08 '19 13:04 VanCoding