asp.net如何实现删除文件的操作

string savePath = @"images/1.gif";//这里是你的相对路径
savePath = Server.MapPath(savePath);//必须经过这一步操作才能变成有效路径
if (System.IO.File.Exists(savePath))//先判断文件是否存在,再执行操作
    System.IO.File.Delete(savePath);
原文地址:https://www.cnblogs.com/hantianwei/p/1575584.html