Click here to Skip to main content
Licence CPOL
First Posted 13 Apr 2011
Views 8,076
Bookmarked 7 times

DotNetZip

By | 13 Apr 2011 | Technical Blog
How to include zip/unzip functionality in your .NET applications.
A Technical Blog article. View original blog here.[^]

If you want to include zip/unzip functionality in your .NET applications, a very good approach would be using DotNetZip (http://dotnetzip.codeplex.com). Recently, I needed this functionality in an installer application. I know I could use the freely available zip applications such as 7-zip on the development site to zip some files, but when it came to unzipping on the client site, I couldn’t assume that they have that third party application on their computer to unzip the files.

.NET comes with two classes which, at first, may seem suitable for zip/unzipping, but on a closer look, they turn out to be not what you may want. The System.IO.Compression class is intended to be used for one file, not a collection of files, and it does not exactly create Zip files. System.IO.Packaging is also not suitable for typical zip/unzipping. It is intended for working with Open Packages. It adds some XML files to the package in addition to the files you specify.

DotNetZip is an Open-Source project that delivers the zip/unzip functionality in a very easy way to use. You add the DLL (ionic.zip.dll) to your project and then you can zip files within a directory, just like this:

Dim zipFileName As String = “MyZipFile.zip”

Dim fileNames As String() = Directory.GetFiles(txtStorageDirectory.Text)

Using zip As Ionic.Zip.ZipFile = New Ionic.Zip.ZipFile
    For Each file In fileNames
        zip.AddFile(file)
    Next
    zip.Save(zipFileName)
End Using

License

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

About the Author

Morris Bahrami

Architect

Australia Australia

Member

I have over 17 years of experience in software development in a variety of fields. For last 7 years the emphasis has been mostly on .NET technology (C# and VB.NET) which includes WPF, WCF and ASP.NET AJAX. Also have SQL Server experience including SSIS and SSRS. My blog (http://morrisbahrami.blogspot.com) has a collection of tips and general info for Microsoft Developers.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
QuestionThe file 'c:\DotNetZip\Zip\ZipFile.cs' does not exist. PinmemberBobSunndb7:38 13 Dec '11  
AnswerRe: The file 'c:\DotNetZip\Zip\ZipFile.cs' does not exist. PinmemberMorris Bahrami12:02 13 Dec '11  
GeneralMy vote of 5 PinmemberEl-ahrairah8:46 23 May '11  

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

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

Permalink | Advertise | Privacy | Mobile
Web04 | 2.5.120517.1 | Last Updated 13 Apr 2011
Article Copyright 2011 by Morris Bahrami
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid