本文介绍了这是我使用但未删除的代码。的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
Session [Path] = Server.MapPath(〜/ Documents /)+ id +_+ documentid +_+ fileName;
FileInfo file = new FileInfo( Session [Path]。ToString());
if(file.Exists)
{
file.Delete();
}
Session["Path"] = Server.MapPath("~/Documents/") + id + "_" + documentid + "_" + fileName;
FileInfo file = new FileInfo(Session["Path"].ToString());
if (file.Exists)
{
file.Delete();
}
推荐答案
string completePath = Server.MapPath("~/ItemsPics/" + item.Text);
if (System.IO.File.Exists(completePath))
{
System.IO.File.Delete(completePath);
}
此代码基本上是写入从文件夹中删除图像所以在路径上进行修正并尝试
this code is basically write to delete image from folder so make correction on path and try
这篇关于这是我使用但未删除的代码。的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!