如何使用 C# 创建 zip 文件?
可能的重复:
.Net Zip Up 文件
我想压缩 .csv
文件使用 C#。我怎样才能做到这一点?
Possible Duplicate:
.Net Zip Up files
I want to zip a .csv
file using C#. How I can do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
尝试查看 Liam Westley 关于使用 SharpZibLib 进行压缩的文章
http://geekswithblogs。网/twickers/archive/2005/11/08/59420.aspx
try checking out Liam Westley's article on zipping with SharpZibLib
http://geekswithblogs.net/twickers/archive/2005/11/08/59420.aspx
嗨...
使用此代码...请自行添加验证
Hii...
Use this code...Please add validation on you own
这里有几篇带有源代码的文章,向您展示如何使用 C# 压缩和解压缩文件。它适用于 .NET 2.0,但仍应与您的问题相关。
http://www.geekpedia.com/tutorial190_Zipping-files-using-GZipStream。 html
http://www.geekpedia.com/tutorial191_Unzipping-compressed-files-使用-GZipStream.html
Here are a couple articles with source code to show you how to zip and unzip files using C#. It's for .NET 2.0, but should still be relevant to your problem.
http://www.geekpedia.com/tutorial190_Zipping-files-using-GZipStream.html
http://www.geekpedia.com/tutorial191_Unzipping-compressed-files-using-GZipStream.html
您需要使用 SharpZipLib。
浏览一下他们的例子,你应该能够从那里弄清楚......
You'll need to use SharpZipLib.
Poke around their examples and you should be able to figure it out from there...