Does anyone know of a good open-source zipping library for .NET?
|
6
|
|
|
|
|
|
Regarding the comments and other posts about the internal gzip implementation, they are not the same! GZip does not create the header required for archiving; it is only useful for "zipping" one file or stream. Proper zip archives contain a header that list all compressed files and where in the compressed data they come and therefore you need something that makes a header. That means SharpZipLib, one of the many commercial versions or using something external with .NET bindings like 7zip. Just on the offchance somebody wants to say this: "But I see |
||||||||||
|
|
|
Couple comments.
DotNetZip (http://DotNetZip.codeplex.com/) is a good 3rd party option. Free, open source, actively maintained, simple to use, small, good feature set. It is shipped as a single assembly - it is fully managed code. Works on Compact Framework as well as on the regular .NET Framework. The pre-req is .NET 2.0. DotNetZip also includes a ZLIB library, with classes like {Zlib,GZip,Deflate}Stream. They are comparable to those built-in to .NET, but they include the ability to set Compression Levels, and at higher levels they compress much more effectively than the built-in classes. The ZlibStream does RFC 1950 compression. DotNetZip does ZIP64, passwords, AES encryption, streams, SFX, and Unicode. Everyone who uses it says it is much simpler to use than SharpZipLib. There's a good help file (.chm) and lots of code examples.
|
|||
|
|
|
|
Give a look here if you want 7-zip with C#. This was a question in an other post at SO. This might help you. |
||
|
|
|
|
you can also check out the J# redist. It re-implements java.util.zip. Article |
||
|
|
|
|
The DotNet Zip Library (Ionic.Zip.dll) is very easy to use. I feel that it's easier to implement than SharpZip. |
||||
|
|
|
** But guys .NET Already supports open source zip....** http://msdn.microsoft.com/en-us/library/system.io.compression.gzipstream.aspx This is compatible with the GZIP libraries. I used this to compress c# data and decompress across the network in a C++ application. Works fine. Tony |
||||||||||
|
|
|
Try checking out 7-zip. It's open source and my fav zip program. very kewl. takes advantage of multi cores also. The .NET SDK is available here. |
||||||
|

