Zlib.Portable icon indicating copy to clipboard operation
Zlib.Portable copied to clipboard

Where is class ZipFile?!

Open RouR opened this issue 9 years ago • 4 comments

See documentation http://dotnetzip.codeplex.com/ first example of use:

using (ZipFile zip = new ZipFile())
 {
     // add this map file into the "images" directory in the zip archive
     zip.AddFile("c:\\images\\personal\\7440-N49th.png", "images");
     // add the report into a different directory in the archive
     zip.AddFile("c:\\Reports\\2008-Regional-Sales-Report.pdf", "files");
     zip.AddFile("ReadMe.txt");
     zip.Save("MyZipFile.zip");
 }

This is not working in your fork.

RouR avatar Jun 20 '15 20:06 RouR