Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Which method do you think is the "best".

  • Use the System.IO.Packaging namespace?
  • Use interop with the Shell?
  • Third party library for .NET?
  • Interop with open source unmanaged DLL?

[I can target Framework 3.5; best = easiest to design, implement, and maintain.]

I am mostly interested in why you think the chosen approach is best.

share|improve this question

6 Answers

up vote 19 down vote accepted

I've always used SharpZipLib

Forgot the why part: Mainly because its been around for a long time. It is well documented, and has an intuitive API. Plus it's open source if you're into that type of thing.

share|improve this answer
2  
Well documented? I found no usable documentation whatsoever, could you point me in the right direction? – mafu Jul 15 '12 at 19:55

I've found the DotNetZip Library to be this easiest way to work with zip files. SharpZipLib is a far more powerful and flexible solution.

share|improve this answer

DotNetZip is very simple to use. I like it because it is fully-managed - no shell interaction required. The programming model is simpler and cleaner than that for the shell. Also it is simpler than SharpZipLib as well as the Packaging classes added in .NET 3.0. It is free, small, actively maintained.

It is much better than the J# option that one poster offered - J# is a huge runtime and a giant pill to swallow to get just ZIP support. Also J# support is being discontinued. Probably not a good idea to introduce new dependencies on J#.

Example code for DotNetZip:

  try
  {
      using (ZipFile zip = new ZipFile(args[0], System.Console.Out))
      {
          zip.AddDirectory(args[1]); // recurses subdirectories
          zip.Save();
      }
  }
  catch (System.Exception ex1)
  {
      System.Console.Error.WriteLine("exception: " + ex1);
  }

DotNetZip works with .NET v2.0, 3.0, 3.5 as well as Compact Framework v2.0 and 3.5. It does ZIP files, Unicode filenames, comments, passwords. It does ZIP64 as well as Self-extracting archives. It's FAST. Try it.

share|improve this answer
1  
Very easy to use API and well document. Cannot go wrong with this one. – Klaus Nji Feb 3 '11 at 19:51

Since you're targetting Framework 3.5, I'd go with System.IO.Packaging. It's a library designed specifically for zipping, and comes with the framework so there's not even an extra DLL needed by the product. The usage example is atrocious, though.

Using the shell is unrecommended. First, it would only work on Windows XP and above. But even if you don't care about that, it's pitfalls are quite numerous (I've done it before, but only because I really had no choice).

if you're not targetting 3.5, I'd use SharpZipLib. It's quite a good library, and even if you are using 3.5 you might consider it.

share|improve this answer
2  
System.IO.Packaging is for reading/writing new Office 2007 formats and was developed with this in mind. E.g. it is not a general zip implementation and has a couple of limitations for that matter. – liggett78 Dec 21 '08 at 22:01
Can you elaborate on these limitations? I haven't yet used that library and would like some more information. – configurator Dec 22 '08 at 17:53
The usage example is indeed, horrible... – KoMet Aug 25 '11 at 6:46

No one has mentioned the Xceed Zip component. I've used it before and it worked excellent for creating zip files and compressing data streams. I highly recommend it but there may be a license fee tradeoff.

share|improve this answer
Indeed, the license fee is why I didn't recommend it - while it works great, so does SharpZipLib, which is free. – configurator Dec 22 '08 at 17:54
The SharpZipLib is licensed under modified GPL which can cause problems in some scenarios. – Martin Vobr Feb 1 '10 at 15:56

The GZipStream and DeflateStream classes under System.IO.Compression namespace make it pretty easy to zip things up.

UPDATE: Comments correctly state that these classes do not allow you to manipulate a Zip file. However, the J# dlls contain the required functionality in java.util and java.io namespaces. For more details see the Code Project article by dmihailescu which details their use and provides sample code.

share|improve this answer
1  
IIRC: These are just compression algorithm, and do not allow for archiving (multiple compressed entries) – Greg Dean Dec 21 '08 at 21:16
Like Greg said. They don't create ZIP archives. Only GZipped streaming, which is useful for http file transfer, compressing your own file formats, etc. But not for creating zip files. – configurator Dec 21 '08 at 21:18
2  
Don't use the J# dlls to read/write zip files. Why? Let me count the ways: J# is out of support. The J# runtime is HUGE. The library is not very .NET-oriented (no events, no properties, no Dispose, etc). The zip implementation is old, incomplete (no support for zip passwords, no ZIP64, etc), and buggy. Use a 3rd party library. – Cheeso May 11 '09 at 17:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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