Как сжать до .zip в C # - PullRequest
       50

Как сжать до .zip в C #

0 голосов
/ 28 июня 2011

Что мне нужно сжать до .zip (не .gzip) в C # и как мне это сделать?

Мне просто нужен быстрый ответ, предпочтительнее ссылка?

Спасибо

Ответы [ 2 ]

3 голосов
/ 28 июня 2011

DotNetZip - хороший вариант.(http://dotnetzip.codeplex.com/) Это довольно легко и быстро.

Here is an example from the site:

Zip:
using (ZipFile zip = new ZipFile())
 {
     // add this map file into the "images" directory in the zip archive
     zip.AddFile("c:\\images\\personal\\7440-N49th.png", "images");
     // add the report into a different directory in the archive
     zip.AddFile("c:\\Reports\\2008-Regional-Sales-Report.pdf", "files");
     zip.AddFile("ReadMe.txt");
     zip.Save("MyZipFile.zip");
 }

 Extract:
 using (ZipFile zip = ZipFile.Read(ExistingZipFile))
 {
    zip.ExtractAll(TargetDirectory);    
 }
2 голосов
/ 28 июня 2011
...