日期:2014-05-17 浏览次数:20442 次
public ActionResult DeleteFlie()
{
string FilePath = Server.MapPath("~/Upload/txt1.txt");//转换物理路径
if (System.IO.File.Exists(FilePath))//判断文件是否存在
{
System.IO.File.Delete(FilePath);//执行IO文件删除,需引入命名空间System.IO;
}
return Json(new { OK=true});
}