using System.IO.Compression;

 

string TOZipPath = String.Format(“~/Static/ZIP/{0}”, DirName);                  //需要压缩的源文件
string TOZipFilePath = String.Format(“~/Static/ZIP/{0}”, DirName + “.zip”);  //压缩成新的Zip文件

try
{
  ZipFile.CreateFromDirectory(Server.MapPath(TOZipPath), Server.MapPath(TOZipFilePath));
}
catch (Exception ex){}

版权声明:本文为xiawg原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://www.cnblogs.com/xiawg/p/10108689.html