asp.net如何实现删除文件的操作? (转)

string savePath = @"images/1.gif";//这里是你的相对路径
savePath = Server.MapPath(savePath);//必须经过这一步操作才能变成有效路径
if (System.IO.File.Exists(savePath))//先判断文件是否存在,再执行操作
    System.IO.File.Delete(savePath);
posted @ 2009-09-10 11:35  fsl  阅读(270)  评论(0编辑  收藏  举报