How to read from Deflate64 zip files in .NET code?

I have a zip file compressed using the Deflate64 method. Neither the standard .NET ZipArchive (the archive entry was compressed using an unsupported compression method.) Nor the Ionic Zip library (the XXX entry uses an unsupported compression method (0x09, Deflate64)) that can decompress it.

Is there a way to do this in .NET?

+3


source to share


1 answer


The SecureBlackbox library ( https://www.eldos.com/SecureBlackbox/ ) supports Deflate64 decompression, however it is commercial.



As far as I know, this is the only solution for .NET at the moment, so don't treat my answer as a shameless ad :)

0


source







All Articles