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

I am trying to programatically unzip a zipped file.

I hace tried using the System.IO.Compression.GZipStream class in .NET, but when my app runs (actually an unit test) I get this expection:

System.IO.InvalidDataException: The magic number in GZip header is not correct. Make sure you are passing in a GZip stream..

I now realize that a .zip file is not the same as a .gz file, and that GZip is not the same as Zip.

However, since I'm able to extract the file by manually double clicking the zipped file and then clicking the "Extract all files"-button, I think there should be a way of doing that in code also.

Therefore I've tried to use Process.Start() with the path to the zipped file as input. This causes my app to open a Window showing the contents in the zipped file. That's all fine, but the app will be installed on a server with noone around to click the "Extract all files"-button.

So, how do I get my app to extract the files in the zipped files?

Or is there another way to do it? I prefer doing it in code, without downloading any third party libraries or apps; the security department ain't too fancy about that...

share|improve this question
4  
Your security department is happier with you writing your own code for something than using a library that has been debugged and looked at by presumably many eyes? You can use a library AND "do it in code" (get the source and compile it yourself) but I see reinventing the wheel as a bigger problem than any security issues brought about by using a tried and true library. – Jared Updike May 7 '09 at 20:10
4  
@Jared - When management gets an idea in their head... – SnOrfus May 7 '09 at 20:16
1  
There is less risk for security department if you get a third party product. Just download dotnetzip and rename it "[insert company name].ziplibrary.dll" – Simon May 7 '09 at 21:41

7 Answers

up vote 15 down vote accepted

We have used SharpZipLib successfully on many projects. I know it's a third party tool, but source code is included and could provide some insight if you chose to reinvent the wheel here.

share|improve this answer
3  
I tried using SharpZipLib and it worked fine. I guess I'll have to see if the prohibition against third party libs and apss is a strict rule or more of a guidline. – Petteri May 7 '09 at 21:49
5  
I don't know about your company, but my experience has always been that it's possible to get an exception to that sort of rule if you write up a business case description of why you want the exception. Point out the cost savings v. DIY, as well as the fact that the source can be examined. As a fallback, you can often get permission to use the source even if they won't let you use the dll--then just compile it yourself (or at least the parts you actually need to use...). – RolandTumble May 7 '09 at 22:09
thanks Chris for the link of that lib. – shalini Dec 9 '11 at 3:49

With .NET 4.5 you can now unzip files using the .NET framework:

using System;
using System.IO;
using System.IO.Compression;

namespace ConsoleApplication
{
  class Program
  {
    static void Main(string[] args)
    {
      string startPath = @"c:\example\start";
      string zipPath = @"c:\example\result.zip";
      string extractPath = @"c:\example\extract";

      ZipFile.CreateFromDirectory(startPath, zipPath);

      ZipFile.ExtractToDirectory(zipPath, extractPath);
    }
  }
}

The above code was taken directly from Microsoft's documentation: http://msdn.microsoft.com/en-us/library/ms404280(v=vs.110).aspx

share|improve this answer
finally a perfect solution :) – mikus Feb 12 at 11:20
4  
BTW, ZipFile is contained in the assembly System.IO.Compression.FileSystem. – nateirvin Feb 13 at 23:08

Use the DotNetZip library at http://www.codeplex.com/DotNetZip

share|improve this answer
Hmmm... But that's a third party library! – Petteri May 7 '09 at 20:51
13  
How very observant of you. Unless you feel like spending several months implemening your own Zip file reader, its your best option. – Dan-o May 7 '09 at 21:08

Free, and no external DLL files. Everything is in one CS file. One download is just the CS file, another download is a very easy to understand example. Just tried it today and I can't believe how simple the setup was. It worked on first try, no errors, no nothing.

http://zipstorer.codeplex.com/

share|improve this answer

From here :

Compressed GZipStream objects written to a file with an extension of .gz can be decompressed using many common compression tools; however, this class does not inherently provide functionality for adding files to or extracting files from .zip archives.

share|improve this answer

Standard zip files normally use the deflate algorithm.

To extract files without using third party libraries use DeflateStream. You'll need a bit more information about the zip file archive format as Microsoft only provides the compression algorithm.

You may also try using zipfldr.dll. It is Microsoft's compression library (compressed folders from the Send to menu). It appears to be a com library but it's undocumented. You may be able to get it working for you through experimentation.

share|improve this answer
I'm trying out the DeflateStream class. This time I get System.IO.InvalidDataException: Block length does not match with its complement.. – Petteri May 7 '09 at 20:48
As I said above, Microsoft only provided the algorithm. You'll need info on the zip archive format as well. en.wikipedia.org/wiki/ZIP_(file_format) should get you started. See the references at the bottom of the page for links to more detailed info. – Kenneth Cochran May 7 '09 at 20:58
2  
I also stumbled acrossed System.IO.Packaging.Package in .NET 3.5. It looks like it may do the trick though its not very intuitive. – Kenneth Cochran May 7 '09 at 21:01

I found sample code to unzip files in .net c#

share|improve this answer

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.