C #. NET decompress/compress the Zip file (ZT) using a third-party class library DotNetZip)

Source: Internet
Author: User

DotNetZip on CodePlex: http://dotnetzip.codeplex.com/

For details, see the source code ...... In short, it feels better than SharpZipLib. In addition, DotNetZip supports VB, C #, and any. NET language.

Pressurization: (stolen from CodePlex)

Using (ZipFile zip = new ZipFile ()) {// add this map file into the "images" directory in the zip archive add this PNG file to the zip file's "images" directory zip. addFile ("c :\\ images \ personal \ 7440-N49th.png", "images "); // add the report into a different directory in the archive, add the PDF file to the "files" directory of the zip file, and put readme.txt in the root directory zip. addFile ("c :\\ Reports \ 2008-Regional-Sales-Report.pdf", "files"); zip. addFile ("ReadMe.txt"); // Save the zipfile as myzipfile.zip. save ("MyZipFile.zip ");}

Easier decompression:

Using (ZipFile zip = new ZipFile ("MyZipFile.zip") {zip. ExtractAll ("c: \ myfolder", ExtractExistingFileAction. OverwriteSilently );}

That's all! All problems are fixed. Is it more convenient than SharpZipLib!

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.