VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > Python基础教程 >
  • C#教程之C#文件压缩

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


相关教程