Удаление файла, но доступ запрещен

У меня есть приложение mvc4 с сущностью.

Я хочу удалить файл, но каждый раз, когда он говорит:

Исключение типа "System.UnauthorizedAccessException" произошло в mscorlib.dll, но не было обработано в коде пользователя

Дополнительная информация: Доступ к пути "G:\Mijn Documents\My Web Sites\Lolabikes - Copy\С#\ContosoUniversity\Images \" отклоняется.

по этой строке: System.IO.File.Delete (путь);

Это метод:

public ActionResult DeleteFiles(int id)
        {           
                //var fileName = Path.GetFileName(id.FileName);

                var DirSeparator = Path.DirectorySeparatorChar;
                var path = Server.MapPath("~\\Images" + DirSeparator);// + fileName.Replace('+', '_')));
               var file = db.lolabikerPhotos.Find(id);               
               System.IO.File.Delete(path);
               db.SaveChanges();           

            return Redirect(Url.Action("Edit", "Account") + "#tabs-3");

        }

Я просто запускаю приложение в visual studio, например: http://localhost:41787/Account/Edit?UserId=hallo

Я уже делал следующее:

Полный доступ к карте, я добавил Network Service на карту с полным контролем. Но ничего не работает. Я использую Windows 7. И я запускаю visual studio 2013 как администратор

Я также вижу следующее:

ASP.NET is not authorized to access the requested resource. Consider granting access rights to the resource to the ASP.NET request identity. ASP.NET has a base process identity (typically {MACHINE}\ASPNET on IIS 5 or Network Service on IIS 6 and IIS 7, and the configured application pool identity on IIS 7.5) that is used if the application is not impersonating. If the application is impersonating via <identity impersonate="true"/>, the identity will be the anonymous user (typically IUSR_MACHINENAME) or the authenticated request user.

Здесь вы можете увидеть доступ:

enter image description here

Я пробую что-то вроде этого:

 <system.web>

    <identity impersonate="true" userName="Administrator" password="windowsPassword"/>
    <httpRuntime requestValidationMode="2.0"  maxRequestLength="1048576" executionTimeout="3600" />
    <compilation debug="true" targetFramework="4.5" />

    <pages validateRequest="false" />

    <!--<httpRuntime targetFramework="4.5" />-->


  </system.web>

Я добавил:

<identity impersonate="true" userName="Administrator" password="windowsPassword"/> 

ОК, я могу запустить приложение, но все же дает ошибку:

Access to the path 'G:\Mijn Documents\My Web Sites\Lolabikes - Copy\C#\ContosoUniversity\Images\' is denied.

Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. 

Exception Details: System.UnauthorizedAccessException: Access to the path 'G:\Mijn Documents\My Web Sites\Lolabikes - Copy\C#\ContosoUniversity\Images\' is denied. 

ASP.NET is not authorized to access the requested resource. Consider granting access rights to the resource to the ASP.NET request identity. ASP.NET has a base process identity (typically {MACHINE}\ASPNET on IIS 5 or Network Service on IIS 6 and IIS 7, and the configured application pool identity on IIS 7.5) that is used if the application is not impersonating. If the application is impersonating via <identity impersonate="true"/>, the identity will be the anonymous user (typically IUSR_MACHINENAME) or the authenticated request user. 

To grant ASP.NET access to a file, right-click the file in File Explorer, choose "Properties" and select the Security tab. Click "Add" to add the appropriate user or group. Highlight the ASP.NET account, and check the boxes for the desired access.

Source Error: 


Line 489:                var path = Server.MapPath("~\\Images" + DirSeparator);// + fileName.Replace('+', '_')));
Line 490:               var file = db.lolabikerPhotos.Find(id);               
Line 491:               System.IO.File.Delete(path);
Line 492:               db.SaveChanges();           
Line 493:

полное разрешение:

enter image description here

Вкладка "Дополнительно": enter image description here

Вкладка "Измененные разрешения":

enter image description here

Я редактировал мой метод действий следующим образом:

 public ActionResult DeleteFiles(int id)
        {           
                var fileName = Path.GetFileName(@"\\Koala.jpg");

                var DirSeparator = Path.DirectorySeparatorChar;
                var path = Server.MapPath(@"\\Images" + DirSeparator + fileName.Replace('+', '_'));
               var file = db.lolabikerPhotos.Find(id);
               LolaBikePhoto lola = db.lolabikerPhotos.Find(id);
               db.lolabikerPhotos.Remove(lola);
               System.IO.File.Delete(path);


               db.SaveChanges();           

            return Redirect(Url.Action("Edit", "Account") + "#tabs-3");

        }

И теперь он работает!

Ответ 1

У меня также была проблема, поэтому я наткнулся на этот пост. Я добавил следующую строку кода до и после копирования/удаления.

Удалить

File.SetAttributes(file, FileAttributes.Normal);
File.Delete(file);

копия

File.Copy(file, dest, true);
File.SetAttributes(dest, FileAttributes.Normal);

Ответ 2

Основываясь на ответе - для меня мне пришлось установить папку и файлы внутри нее для обычных атрибутов. (в VB.NET)

    Dim di As New DirectoryInfo("file path")

    di.Attributes = FileAttributes.Normal

    For Each fi As FileInfo In di.GetFiles
        fi.Attributes = FileAttributes.Normal
    Next