We recommend that you use dotnetzip, an open-source class library for ZIP files.

Source: Internet
Author: User

This article reprinted: http://www.cnblogs.com/carysun/archive/2009/02/11/DotNetZip.html

 

Dotnetzip is a short and easy-to-use. Net class library used to operate ZIP files. It supports any. Net Language and allows you to easily create, read, and update ZIP files. It can also be used in. netcompact framework.

Below are some simple examples:

1. Encrypted compression:

 
Using(Zipfile zip =NewZipfile () {zip. Password = spassword;// Set pwdZip. adddirectory (szipdir); zip. Save (ssavepath +@"\"+ Ssavename );}

2. Add the following to the compressed file:

Using(Zipfile zip =NewZipfile ("Backup.zip") {Zip. Password ="123456! "; Zip. AddFile ("Readme.txt"); Zip. AddFile ("7440-n49th.png"); Zip. AddFile ("2005_annual_report.pdf"); Zip. Save ();}

3. decompress the package to the specified directory:

Using(Zipfile zip = zipfile. Read ("D: \ test \ 2007.zip")){Foreach(Zipentry EInZip) {console. writeline ("File Name: {0 }", E. filename); console. writeline (E. Comment); E. Extract ("D: \ test \ pwdata",True);// Overwrite = true}}

For more detailed use, see: http://www.codeplex.com/DotNetZip

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.