2

我正在从剑道上传控件中删除图像。

这是我的代码

  public ActionResult Remove(string[] fileNames)
    {

        if (fileNames != null)
        {
            foreach (var fullName in fileNames)
            {
                var fileName = Path.GetFileName(fullName);
                var physicalPath = Server.MapPath(Path.Combine(("~/AssetAttachments"),fileName));

                if (System.IO.File.Exists(physicalPath))
                {
                     System.IO.File.Delete(physicalPath);
                }
            }
        }
        return Content("");
    }

我的物理路径是 E:\karthik related\JPL\Dev\Src\AssetTrackingSystem\AssetTrackingSystem\AssetAttachments\Attach3.jpg

即使文件和目录可用

  if (System.IO.File.Exists(physicalPath))

正在返回 false 并脱离状态。

您的帮助将不胜感激。

4

2 回答 2

6

尝试这个:

foreach (var fullName in fileNames)
{
     var physicalPath = System.IO.Path.Combine(HttpContext.Current.Server.MapPath("~/AssetAttachments"), fullName);

     if (System.IO.File.Exists(physicalPath))
     {
         System.IO.File.Delete(physicalPath);
     }
}
于 2014-03-28T08:10:13.500 回答
1

试试这个,

FileInfo fi = new FileInfo(Path.Combine(("~/AssetAttachments"),fileName));
 if (fi.Exists)
 {
   fi.Delete();
 }
于 2014-03-28T07:08:06.457 回答