删除指定路径的文件
string path = this.Server.MapPath("XXXXX"); //路径FileInfo file = new FileInfo(path);if (file.Exists == true){ file.Delete();}