1. 程式人生 > >刪除資料夾、建立資料夾、刪除檔案 等操作

刪除資料夾、建立資料夾、刪除檔案 等操作

using System.IO;


System.IO.DirectoryInfo dirinfo = System.IO.Directory.CreateDirectory(Server.MapPath("/go/1111"));  //建立資料夾
Directory.Delete(Server.MapPath("/go/1111"), true);   //刪除1111資料夾
System.IO.File.Delete(Server.MapPath("/Image/Case/1111.jpg"));   //刪除1111.jpg檔案