【发布时间】:2022-01-23 07:03:12
【问题描述】:
我面临删除完整目录的问题,因为某些文件出现此错误System.UnauthorizedAccessException: 'Access to the path 'pstore.bin' is denied.'
我试图授予单个文件的权限,但相同,测试过但也不起作用:
var di = new DirectoryInfo(item);
di.Attributes &= ~FileAttributes.Normal;
Directory.Delete(item, true);
不知道如何删除这个文件,我已经测试了我在这个论坛上找到的几乎所有内容,但不确定哪里出了问题。需要明确的是,此文件来自 Android Studio AVD Emulator。
更新异常说明:
**System.UnauthorizedAccessException: 'Access to the path 'pstore.bin' is denied.'**
This exception was originally thrown at this call stack:
[External Code]
TwitterSuite_v._1._0.Form1.fullZipAll.AnonymousMethod__0(string) in Form1.cs
[External Code]
【问题讨论】:
标签: c# file directory delete-file