服务器中的 zip 文件
如何将(在服务器中)多个文件压缩到一个存档?
How can I zip (In the server) multiple files to one archive?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何将(在服务器中)多个文件压缩到一个存档?
How can I zip (In the server) multiple files to one archive?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
以下代码使用我们的 Rebex ZIP 并展示如何在不使用任何临时文件的情况下将文件添加到 ZIP 存档中文件。然后将该 ZIP 发送到 Web 浏览器。
有关详细信息,请参阅ZIP 教程。
替代解决方案:
SharpZipLib 和 DotNetZip 广泛使用的免费替代品。
Following code uses our Rebex ZIP and shows how to add files into the ZIP archive without using any temp file. The ZIP is then sent to the web browser.
For more info see ZIP tutorial.
Alternative solution:
SharpZipLib and DotNetZip a widely used free alternatives.
查看 SharpZipLib 或 DotNetZip
Take a look at SharpZipLib or DotNetZip
Codeplex 有 Dot Net Zip http://dotnetzip.codeplex.com/
您也可以尝试
System .IO.压缩
Codeplex has Dot Net Zip http://dotnetzip.codeplex.com/
You can also try
System.IO.Compression