Click here to Skip to main content
15,880,608 members
Articles / Programming Languages / C#
Article

Simple zip archive unzipper

Rate me:
Please Sign up or sign in to vote.
3.56/5 (15 votes)
14 May 2008CPOL2 min read 46.4K   1K   36   10
A very small library for unzipping zip files/streams.

Introduction

If you sometimes find yourself in a situation where you need to unzip some files but really don't like the thought of having to roll out the big artillery (i.e., third-party libraries), then this simple zip archive unzipper might be the thing for you. It consists of just a single source file of about 200 lines of code, and is thus easily incorporated into your application. This way, you don't have to worry about third-party library dependencies and related deployment issues; simply compile the simple zip archive unzipper into your application, and you are ready to go.

The library supports zip-files with no compression, and zip-files compressed with the Deflate algorithm. This includes zip-files generated by the Windows Zip Shell extension (Send To -> Compressed (zipped) folder), zip-files generated by WinZip (with default compression settings at least), and zip-files generated by the Info-Zip tools.

Background

Internally, the library only handles some simple parsing of the zip file headers. All the gory details of actually decompressing the data is left to the built-in System.IO.Compression.DeflateStream. As this class is available beginning with .NET 2.0, the library compiles and runs on the .NET 2.0, 3.0, and 3.5 platforms.

Using the code

The library contains just one class, SimpleUnZipper, with a few static methods. To unzip a file on disk to a directory on disk, simply use the UnZipTo method:

C#
// Unzip archive to disk
SimpleUnZipper.UnZipTo(@"c:\zipfile.zip", @"c:\foo\bar");

This will unzip the files in 'c:\zipfile.zip' and place them in the 'c:\foo\bar' folder, creating a sub-folder structure on disk matching that of the zip-file.

The UnZipTo method also accepts a Stream as input:

C#
// Unzip from stream to disk
using (var stream = File.OpenRead(@"c:\zipfile.zip"))
{
    SimpleUnZipper.UnZipTo(stream, @"c:\foo\bar");
}

To get the raw decompressed data from a zip file, use the UnZip methods:

C#
// Unzip archive manually
foreach (var file in SimpleUnZipper.UnZip(@"c:\zipfile.zip"))
{
    Console.WriteLine(file.Name);
    // Do something with file.Stream here...
}

The UnZip methods return an IEnumerable<UncompressedFile>, where each UncompressedFile has a Name property (the file name) and a Stream property (the decompressed file data). Note that an UncompressedFile might be a directory, in which case, the Name is a directory and the Stream has a length of zero.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect Vestas Control Systems A/S
Denmark Denmark
M.Sc, Computer Science, Daimi, DK

Comments and Discussions

 
GeneralMy vote of 5 Pin
Anuj Tripathi18-Jul-13 11:51
Anuj Tripathi18-Jul-13 11:51 
Questionhow can i use this class. Pin
dinhanhency26-May-09 23:59
dinhanhency26-May-09 23:59 
GeneralThank you! Pin
Bambi33-Jul-08 4:42
Bambi33-Jul-08 4:42 
GeneralPasswords... Pin
Reelix11-Jun-08 23:49
Reelix11-Jun-08 23:49 
GeneralKind of Streams Pin
Mario Majčica14-May-08 3:19
professionalMario Majčica14-May-08 3:19 
Hi, I have another small problem.

Did you ever tryed to pass to your methods a strem like this response.GetResponseStream()
where response is HttpWebResponse.

I tryed to save response.GetResponseStream() via FileStream and it saves correctly to disk a zip file.

<br />
FileStream writeStream = new FileStream("c:\\nmkt.zip", FileMode.Create, FileAccess.Write);<br />
<br />
int Length = 256;<br />
Byte[] buffer = new Byte[Length];<br />
int bytesRead = response.GetResponseStream().Read(buffer, 0, Length);<br />
// write the required bytes<br />
while (bytesRead > 0)<br />
{<br />
   writeStream.Write(buffer, 0, bytesRead);<br />
   bytesRead = readStream.Read(buffer, 0, Length);<br />
}<br />


If I try to pass it to a method UnZip it won't go. I get IEnumerable<uncompressedfile> file empty.

<br />
IEnumerable<uncompressedfile> files = UnZipper.UnZip(response.GetResponseStream());<br />
</uncompressedfile>


Any suggestion?

Thanks
GeneralRe: Kind of Streams Pin
Mario Majčica14-May-08 4:54
professionalMario Majčica14-May-08 4:54 
AnswerRe: Kind of Streams Pin
Anders M. Mikkelsen14-May-08 9:44
Anders M. Mikkelsen14-May-08 9:44 
QuestionCompile Error Pin
Mario Majčica13-May-08 22:55
professionalMario Majčica13-May-08 22:55 
AnswerRe: Compile Error Pin
Anders M. Mikkelsen14-May-08 1:13
Anders M. Mikkelsen14-May-08 1:13 
GeneralRe: Compile Error Pin
Mario Majčica14-May-08 2:08
professionalMario Majčica14-May-08 2:08 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.