vote up 6 vote down star
5

Hello everyone,

Looks like no built-in Library/API in C# to unzip a zip file. I am looking for a free (better open source) library/API which could work with .Net 3.5 + VSTS 2008 + C# to unzip a zip file and extract all files into a specific folder.

Any recommended library/API or samples?

thanks in advance, George

flag

41% accept rate

8 Answers

vote up 8 vote down check

The LGPL

http://www.icsharpcode.net/OpenSource/SharpZipLib/

OR the less restrictive Ms-PL

http://www.codeplex.com/DotNetZip

To complete this answer the .net framework has ZipPackage I had less success with it.

link|flag
as well .Net has a built in implementation, but its impossible to work with – Sam Saffron Jun 21 at 9:08
Cool I like the first one. For the .Net one, which class do you mean? – George2 Jun 21 at 9:24
Why do you mean .Net ZipPackage is less success? – George2 Jun 21 at 9:29
See: stackoverflow.com/questions/507751/… – Sam Saffron Jun 21 at 22:25
In most cases, DotNetZip is considerably simpler to use that SharpZipLib. – Cheeso Jun 23 at 16:09
vote up 0 vote down

Have a look to my small library: http://zipstorer.codeplex.com

link|flag
vote up 0 vote down

I would prefer SharpZiplib Please find the sample code to UnZip Files in .Net C#

link|flag
vote up 2 vote down

In the past, I've used DotNetZip (MS-PL), SharpZipLib (GPL), and the 7ZIP SDK for C# (public domain). They all work great, and are open source.

I would choose DotNetZip in this situation, and here's some sample code from the C# Examples page:

using (ZipFile zip = ZipFile.Read(ExistingZipFile))
{
  foreach (ZipEntry e in zip)
  {
    e.Extract(TargetDirectory);
  }
}
link|flag
vote up 2 vote down

DotNetZip is easy to use. Here's an unzip sample

using (var zip = Ionic.Zip.ZipFile.Read("archive.zip")
{
   zip.ExtractAll("unpack-directory");
}

If you have more complex needs, like you want to pick-and-choose which entries to extract, or if there are passwords, or if you want to control the pathnames of the extracted files, or etc etc etc, there are lots of options. Check the help file for more examples.

DotNetZip is free and open source.

link|flag
vote up 1 vote down

If you want to use 7-zip compression, check out Peter Bromberg's EggheadCafe article. Beware: the LZMA source code for c# has no xml comments (actually, very few comments at all).

link|flag
vote up 4 vote down

SharpZipLib

http://www.icsharpcode.net/OpenSource/SharpZipLib/

link|flag
How do you think of .Net's built ZipPackage class? – George2 Jun 21 at 9:30
vote up 1 vote down

Look for System.IO.Compression.GZipStream & System.IO.Compression.DeflateStream

link|flag
1  
it wont work you need to parse the header to get zip file format support – Sam Saffron Jun 21 at 9:07
1  
Hmm. I haven't used the GZipStream/DeflateStream, but I knew of such a class in namespace. Thanks for letting me know of that. – shahkalpesh Jun 21 at 9:10
@Sam, could you explain what do you mean -- "it wont work you need to parse the header to get zip file format support" please? – George2 Jun 21 at 9:29
GZipStream and DeflateStream DO NOT read or write zip files. Check the doc. msdn.microsoft.com/en-us/library/… -- "this class does not inherently provide functionality for adding files to or extracting files from .zip archives." – Cheeso Jun 23 at 16:07
Thanks Cheeso. I realized it after posting it & didn't delete. – shahkalpesh Jun 23 at 16:17

Your Answer

Get an OpenID
or

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