Use the Deflate algorithm to compress and decompress files.

Source: Internet
Author: User

 

Static void Main ()

{

String path = @ "D: \ Practise \ IO \ Compress ";

 

String deCompressPath = @ "D: \ Practise \ IO \ DeCompress ";

 

DirectoryInfo dir = new DirectoryInfo (path );

Foreach (FileInfo fi in dir. GetFiles ())

{

Compress (fi );

}

Foreach (FileInfo fi in dir. GetFiles ("*. cmp "))

{

DeCompress (fi, deCompressPath );

}

}

Public static void Compress (FileInfo fi)

{

Using (FileStream fs = fi. OpenRead ())

{

If (fi. Attributes! = FileAttributes. Hidden & fi. Extension! = ". Cmp ")

{

Using (FileStream compressfile = new FileStream (fi. FullName + ". cmp", FileMode. Create, FileAccess. ReadWrite ))

{

Using (DeflateStream ds = new DeflateStream (compressfile, CompressionMode. Compress ))

{

Fs. CopyTo (ds );

Console. WriteLine ("This File {0} has been Compressed to {1}", fi. Name, compressfile. Name );

}

} Www.2cto.com

}

}

}

Public static void DeCompress (FileInfo fi, string desination)

{

Using (FileStream fs = fi. OpenRead ())

{

String deCompressFile = fi. Name. Remove (fi. Name. Length-fi. Extension. Length );

Using (FileStream deCompressFS = new FileStream (Path. Combine (desination, deCompressFile), FileMode. Create, FileAccess. ReadWrite ))

{

Using (DeflateStream ds = new DeflateStream (fs, CompressionMode. Decompress ))

{

Ds. CopyTo (deCompressFS );

Console. WriteLine ("This file {0} has been Decompressd", fi. Name );

}

}

}

}

From the column ws_hgo

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.