做功能模块时需要...原文
public static void DeleteFile(string fileUrl) { string file = System.Web.HttpContext.Current.Server.MapPath(fileUrl); if (System.IO.File.Exists(file)) { System.IO.File.Delete(file); } }
亲测有效。