Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@pparadis
Created July 26, 2012 01:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pparadis/3179705 to your computer and use it in GitHub Desktop.
Save pparadis/3179705 to your computer and use it in GitHub Desktop.
Zip DotNetZip
using (ZipFile zip = new ZipFile())
{
zip.AddFile("c:\\images\\personal\\7440-N49th.png", "images");
zip.AddFile("c:\\Reports\\2008-Regional-Sales-Report.pdf", "files");
zip.AddFile("ReadMe.txt");
zip.Save("MyZipFile.zip");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment