无法删除文件,因为它正在被另一个进程ASP.NET Core MVC使用

时间:2018-12-26 02:25:00

标签: javascript c# html asp.net asp.net-core

我正在将ASP.Net Core与MVC一起用于创建应用程序。我目前正在使用Visual Studio和IIS Express。 下面是我当前的项目结构:

*项目目录

-wwwroot

-区域

-附件

-控制器

-模型

-视图

我目前将图像存储在附件文件夹中。

以前,我是在startup.cs内部写过类似的东西

app.UseStaticFiles(new StaticFileOptions
        {
            FileProvider = new PhysicalFileProvider(
        Path.Combine(Directory.GetCurrentDirectory(), "Attachments")),
            RequestPath = "/Attachments"
        });

我在下面也做了类似的事情:

appendImage(@Url.Content("~/Attachments/")+result.fileName);

我这样做是为了在视图上显示图像。图像显示成功。

我现在想要实现的是用户界面上的,允许用户选择删除该附件文件夹中的文件

我尝试了以下代码:

string contentRootPath = _hostingEnvironment.ContentRootPath;
string fullImagePath = Path.Combine(contentRootPath +   "\\Attachments", currentItemToDelete.FileName);

if (System.IO.File.Exists(fullImagePath))
{
  try{
       System.IO.File.Delete(fullImagePath);
  }catch(Exception e){
       operationResult = "Attachment Path. Internal Server Error";
  }
}

执行程序确实输入了if (System.IO.File.Exists(fullImagePath)) 但到达System.IO.File.Delete时会引发异常。该异常指出驻留在该路径中的文件正在被另一个进程使用。因此,我无法删除该文件。访问文件的唯一过程是我同时创建/调试的Web应用程序。如何防止此异常发生?我是否必须使用其他类型的代码来删除文件?

编辑以包含更多详细信息:

在我的视图内(index.cshtml):

appendImage是一个javascript函数:

function appendImage(imgSrc) {
        var imgElement = document.createElement("img");
        imgElement.setAttribute('src', imgSrc);


        if (imgSrc.includes(null)) {
            imgElement.setAttribute('alt', '');
        }
        imgElement.setAttribute('id', "img-id");

        var imgdiv = document.getElementById("div-for-image");
        imgdiv.appendChild(imgElement);
}

该函数的调用如下:

$.ajax({
                url:'@Url.Action("GetDataForOneItem", "Item")',
                type: "GET",
                data: { id: rowData.id },
                success: function (result) {
                    removeImage();
                    appendImage(@Url.Content("~/Attachments/")+result.fileName);
                    $("#edit-btn").attr("href", '/Item/EditItem?id=' + result.id);
                },
                error: function (xhr, status, error) {

                }
        });

在调用appendImage()之后;我更改了<a>标签的href。当用户单击链接时,该用户将被定向到另一个页面(edit.cshtml)。在页面中,该路径中的图像也正在使用以下代码显示:

<img src="@Url.Content("~/Attachments/"+Model.FileName)" alt="item image" />

在此新页面(edit.cshtml)中,有一个删除按钮。单击删除按钮后,程序的执行将转到该控制器的控制器:

[HttpPost]
public string DeleteOneItem(int id)
{
        //query the database to check if there is image for this item.
        var currentItemToDelete = GetItemFromDBDateFormatted(id);
        if (!string.IsNullOrEmpty(currentItemToDelete.FileName))
        {
            //delete the image from disk. 
            string contentRootPath = _hostingEnvironment.ContentRootPath;
            string fullImagePath = Path.Combine(contentRootPath + "\\Attachments", currentItemToDelete.FileName);

            if (System.IO.File.Exists(fullImagePath))
            {
                try
                {
                    System.IO.File.Delete(fullImagePath);
                }catch(Exception e)
                {

                }
            }

        }

        return "";

 }

编辑以回答问题:

添加

System.GC.Collect(); 
System.GC.WaitForPendingFinalizers(); 

在system.io.file.delete之前

2 个答案:

答案 0 :(得分:2)

您可以使用此给定代码替换C#方法DeleteOneItem。可能是可行的。

[HttpPost]
public string DeleteOneItem(int id)
{
    //query the database to check if there is image for this item.
    var currentItemToDelete = GetItemFromDBDateFormatted(id);
    if (!string.IsNullOrEmpty(currentItemToDelete.FileName))
    {
        //delete the image from disk. 
        string contentRootPath = _hostingEnvironment.ContentRootPath;
        string fullImagePath = Path.Combine(contentRootPath + "\\Attachments", currentItemToDelete.FileName);

        if (System.IO.File.Exists(fullImagePath))
        {
            try
            {
                System.GC.Collect();
                System.GC.WaitForPendingFinalizers();
                System.IO.File.Delete(fullImagePath);

            }
            catch (Exception e) { }
        }
    }
    return "";
}

答案 1 :(得分:1)

try
{
 System.GC.Collect(); 
 System.GC.WaitForPendingFinalizers(); 
 System.IO.File.Delete(fullImagePath);
}
catch(Exception e){
}