Does anyone know of a good way to compress or decompress files and folders in C# quickly? Handling large files might be necessary.
original title: "c# - Compressing / Decompressing Folders & Files"
Does anyone know of a good way to compress or decompress files and folders in C# quickly? Handling large files might be necessary.
C#でファイルやフォルダーをすばやく圧縮または解凍するための良い方法を知っている人はいますか?大きなファイルの処理が必要になる場合があります。
これは翻訳後の要約です。完全な翻訳を表示する必要がある場合は、「翻訳」アイコンをクリックしてください。
The .Net 2.0 framework namespace
System.IO.Compression
supports GZip and Deflate algorithms. Here are two methods that compress and decompress a byte stream which you can get from your file object. You can subsituteGZipStream
forDefaultStream
in the methods below to use that algorithm. This still leaves the problem of handling files compressed with different algorithms though.I've always used the SharpZip Library.
Here's a link
As of .Net 1.1 the only available method is reaching into the java libraries.
Using the Zip Classes in the J# Class Libraries to Compress Files and Data with C#
Not sure if this has changed in recent versions.
You can use a 3rd-party library such as SharpZip as Tom pointed out.
Another way (without going 3rd-party) is to use the Windows Shell API. You'll need to set a reference to the Microsoft Shell Controls and Automation COM library in your C# project. Gerald Gibson has an example at:
Internet Archive's copy of the dead page
My answer would be close your eyes and opt for DotNetZip. It's been tested by a large community.
GZipStream is a really good utility to use.
This is very easy to do in java, and as stated above you can reach into the java.util.zip libraries from C#. For references see:
java.util.zip javadocs
sample code
I used this a while ago to do a deep (recursive) zip of a folder structure, but I don't think I ever used the unzipping. If I'm so motivated I may pull that code out and edit it into here later.
Another good alternative is also DotNetZip.
you can create zip file with this method:
and then you can unzip zip file with this methods:
1- this method work with zip file path
2- this method work with zip file stream