📌  相关文章
📜  C# 如何删除文件夹中的图像 - C# 代码示例

📅  最后修改于: 2022-03-11 14:49:05.696000             🧑  作者: Mango

代码示例1
var filePath = Server.MapPath("~/Images/" + filename);
if(File.Exists(filePath))
{
    File.Delete(filePath);
}