views:

509

answers:

1

Hello,

I'm getting this error while trying to decompress some GZ files with #ZipLib 0.85.5

Those file are not corrupted, I'm able to decompress it correctly using 7-Zip.

ICSharpCode.SharpZipLib.SharpZipBaseException Unexpected EOF

Any idea? Thanks

A: 

You could try a different managed library? I don't know much about sharpziplib, but why wouldn't you just use the built-in System.IO.Compression.GZipStream to unpack .gz data ?

Cheeso