vote up 9 vote down star
6

Does anyone know of a good open-source zipping library for .NET?

flag

7 Answers

vote up 18 vote down check

SharpZipLib

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 .gz files in Linux all the time!" - they're just single files and .tar.gz is no exception - tar is the archive file. The .gz is that archive compressed.

link|flag
You don't need this .NET has build in functionality: see gzipstream class. – Tony Lambert Dec 17 '08 at 12:47
gzipstream is not anything nearby zip-functionality. – BeowulfOF Dec 17 '08 at 13:00
I think you getting too caught up with the files... gzip is a general compression format. – Tony Lambert Dec 17 '08 at 13:16
Right, gzip is a compression format, but not for file-containers. And gzip is not zip. – BeowulfOF Dec 18 '08 at 9:50
I had this exact question, and this solution was very fast to implement. The ZipFast class lets me do most of what I need in a single line of code. Perfect. – Jeffrey Apr 29 at 14:45
show 1 more comment
vote up 7 vote down

Couple comments.

  1. Don't use the J# runtime. J# has been discontinued by Microsoft. Future support is questionable. Also, the entire J# runtime is a big nut to swallow when all you want is ZIP support.
  2. The GzipStream in System.IO.Compression, part of the .NET base class library since .NET 2.0, provides a stream interface for IETF RFC-1952 compression. It is ok for compression, though the compression ratio is not good and it will significantly expand data that has been previously compressed. There is also a DeflateStream which is similar, but for RFC 1951. There's a common misconception that GZipStream does zip files. Not true. Neither of these two do zip files.
  3. There's System.IO.Packaging.ZipPackage. It works, but is designed and intended primarily for packaging of MS Office 2007 (.docx, .xslx, and .pptx) files. It's unwieldy for zip files and doesn't support lots of ZIP features, like encryption.
  4. If you want a flexible way to create and read zip files in .NET you need a 3rd party library, currently.

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.

DNZ CHM

link|flag
vote up 0 vote down

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.

link|flag
vote up -2 vote down

you can also check out the J# redist. It re-implements java.util.zip. Article

link|flag
vote up 5 vote down

The DotNet Zip Library (Ionic.Zip.dll) is very easy to use. I feel that it's easier to implement than SharpZip.

http://www.codeplex.com/DotNetZip

link|flag
Does not expand some of the files that SharpZipLib does. – Sergey Aldoukhov Oct 9 at 4:04
which files does it not expand? – Cheeso Nov 4 at 17:21
vote up 9 vote down

** 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

link|flag
how does the compression ratio compare to 7-Zip ? – Pure.Krome Dec 17 '08 at 12:50
Its the same as gZIP. – Tony Lambert Dec 17 '08 at 12:59
the system.io.compression namespace is not completly opened, the useful stuff is inside the microsoft.internal namespace. In system.io.compression is only the part usefull for creating small zipped files, like the new office files, not real zip files. – BeowulfOF Dec 17 '08 at 13:00
He didn't say he wanted to produce files.... He may just want to zip information to persist in one of many ways, might he? – Tony Lambert Dec 17 '08 at 13:02
7-ZIP Is not a library. – Tony Lambert Dec 17 '08 at 13:03
show 4 more comments
vote up 7 vote down

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.

link|flag
Dude - 7 zip IS a zipping program. It's also open source .. so that means it's .NET right? ==> C# source code for LZMA compression and decompression – Pure.Krome Dec 17 '08 at 12:36
+1, SDK is public domain too, thats sounds real good to me. – Tuminoid Dec 17 '08 at 12:42
A word of caution: the (safe) C# implementation of 7-zip is very, very much slower than the unmanaged library, something like 10x (private impression, didn't benchmark since the difference was so large). – Anton Tykhyy Jun 30 at 16:19

Your Answer

Get an OpenID
or

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