Extracting files from a Zip archive programmatically using C# and System.IO.Packaging
If you are manipulating ZIP files, you may want to look into a 3rd-party library to help you. For example, DotNetZip, which has been recently updated. The current version is now v1.8. Here’s an example to create a zip: using (ZipFile zip = new ZipFile()) { zip.AddFile(“c:\\photos\\personal\\7440-N49th.png”); zip.AddFile(“c:\\Desktop\\2005_Annual_Report.pdf”); zip.AddFile(“ReadMe.txt”); zip.Save(“Archive.zip”); } Here’s an example to … Read more