如何在 C# 中压缩为 .zip

发布于 2024-11-17 16:54:21 字数 86 浏览 3 评论 0原文

我需要在 C# 中将什么内容压缩为 .zip(而不是 .gzip)以及如何操作?

我只需要一个快速答案,最好是一个链接?

谢谢

What do I need to compress to .zip (not .gzip) in C# and how do I go about it?

I just need a quick answer, more preferably a link?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

日暮斜阳 2024-11-24 16:54:21

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);    
 }

DotNetZip is a good option. (http://dotnetzip.codeplex.com/)
It is pretty easy and quick.

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);    
 }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文