web-dev-qa-db-ja.com

ファイルを削除していますが、アクセスは拒否されています

エンティティフレームワークを備えたmvc4アプリケーションがあります。

ファイルを削除したいが、それが言うたびに:

タイプ 'System.UnauthorizedAccessException'の例外がmscorlib.dllで発生しましたが、ユーザーコードでは処理されませんでした

追加情報:パス「G:\ Mijn Documents\My Web Sites\Lolabikes-Copy\C#\ ContosoUniversity\Images \」へのアクセスは拒否されます。

この行:System.IO.File.Delete(path);

これがメソッドです:

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

私はすでに次のことを行っています。

マップへのフルアクセス、ネットワークサービスをフルコントロールでマップに追加しました。しかし、何もうまくいかないようです。 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"/> 

OK、アプリを実行できますが、それでもエラーが発生します:

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");

        }

そして今、それは働いています!

15
Niels Savant

私にも問題があったので、この投稿につまずきました。コピー/削除の前後に次のコード行を追加しました。

削除する

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

コピー

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

答えに基づいて-私にとっては、フォルダおよびその中のファイルを通常の属性に設定する必要がありました。 (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
3
Thomas Bailey