vote up 5 vote down star
1

From msdn:

http://msdn.microsoft.com/en-us/library/system.io.compression.deflatestream.aspx

This class cannot be used to compress files larger than 4 GB.

Do you know any other implementations for .net without the 4 gb limit?

Thanks

NOTE: I really need to decompress a file in GZ format with content larger than 4gb. Do you know any code that can do that? Thanks

flag

7 Answers

vote up 2 vote down check

Take a look at SharpZipLib. Not sure if it's subject to the same limitation, but worth a look.

link|flag
vote up 1 vote down

Having a look around seems a lot of people have encountered this problem. This thread seems the most comprehensive

System.IO.Compressio.DeflateStream clarifications please

the only implementation I was able to find that seems to overcome this problem by using Zip64 is

Xceed Zip for .NET

however it is very expensive and not sure if it would suite your needs.

Edit:

There does seem to be quite a number of implementations of Zip64 for .NET but can't find any that are free.

link|flag
That external thread is not helpful. It is filled with supposition, and wrong ones. The DeflateStream does not keep all the stream data in memory - that is not the reason for the 4gb limitation. – Cheeso Mar 5 at 9:32
DotNetZip is a managed .NET library for ZIP files, that does ZIP64. It's free (gratis + libre), though donations are encouraged. ZIP64 is a solution to a different problem than the original poster asked about - the limitation of the BCL DeflateStream. – Cheeso Jun 24 at 4:02
vote up 6 vote down

There is sample code at CodeProject using the 7zip library.

The license is open so you should be able to use this in your project.

7-Zip also supports GZ files.

link|flag
Would up vote this if I had some votes left, this seems like a good one and looking at the change log does have Zip64 support. – Mark Davidson Feb 2 at 22:55
Way better than SharpZipLib (which is a facade for zlib). 7zip is amazing. – Rob Sanders Mar 17 at 22:30
vote up 1 vote down

Look for libraries that support DEFLATE64 (not Zip64, that's an extension to the ZIP file format). Xceed Zip for .NET does support Deflate64, and I'm sure others do too.

link|flag
vote up 5 vote down

FYI, we have removed the 4 GB limit from DeflateStream in .NET 4.

link|flag
cool! I'm waiting for that ;) – Luca Martinetti Feb 3 at 3:07
vote up 0 vote down

DotNetZip does ZIP64 for .NET, and it is free. But Zip64 is not the same as Deflate64.

link|flag
vote up 0 vote down

Although that documentation says the 4GB limitation is for both the DeflateStream and GZipStream, only GZipStream is limited because of the CRC32 checksum. If you do not need CRC32 then use DeflateStream.

link|flag
Interesting. Couple questions. #1: Are you sure about this? #2. Why does the CRC32 limit the size of the data that can be compressed? #3. What is the source of your information? (are you familiar with the DeflateStream implementation, or what?) – Cheeso Jun 24 at 4:09
Hi, 1. I am absolutely sure - I have tested it. 2. See Wikipedia: en.wikipedia.org/wiki/Cyclic_redundancy_check/… 3. I used .NET Reflector (red-gate.com/products/reflector) to peek at the code. The 4GB limitation is completely ignored if CRC32 is not used. – Muncho Aug 29 at 17:04

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.