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 09:56  大气象  阅读(649)  评论(4编辑  收藏  举报
http://www.tianqiweiqi.com