Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要使用 ASP.Net MVC3 中的按钮压缩多个文件
您的回答将不胜感激。
谢谢!
使用dotnetzip 库(开源)
简单代码:
using (ZipFile zip = new ZipFile()) { zip.AddFile("ReadMe.txt"); zip.AddFile("Resume.doc"); zip.AddFile("Portrait.png"); zip.Save("Package.zip"); }