unauthorizedaccessexception - 访问路径被拒绝 - API 29
unauthorized access exception - access to the path denied - API29
我通过将其路径结尾从 =***** 更改为 =download 来访问位于 OneDrive 上的 .txt 文件。然后我尝试使用以下代码下载此文件:
string fileName = Android.OS.Environment.DirectoryDownloads + "/textfile.txt";
WebClient web = new WebClient();
web.UseDefaultCredentials = true;
web.Proxy.Credentials = System.Net.CredentialCache.DefaultCredentials;
web.DownloadFile(uslugiPath, fileName);
结果我得到这个 Unauthorized.Access 异常(访问下载被拒绝)。
我检查了 [This] () 主题和许多其他主题,但没有找到解决方案。
Permissins.CheckStatusAsync 结果给出“授予”。
API 29
在我的例子中,解决方案是使用定义的路径
var fileName = global::Android.OS.Environment.ExternalStorageDirectory.AbsolutePath
我通过将其路径结尾从 =***** 更改为 =download 来访问位于 OneDrive 上的 .txt 文件。然后我尝试使用以下代码下载此文件:
string fileName = Android.OS.Environment.DirectoryDownloads + "/textfile.txt";
WebClient web = new WebClient();
web.UseDefaultCredentials = true;
web.Proxy.Credentials = System.Net.CredentialCache.DefaultCredentials;
web.DownloadFile(uslugiPath, fileName);
结果我得到这个 Unauthorized.Access 异常(访问下载被拒绝)。
我检查了 [This] (
Permissins.CheckStatusAsync
API 29
在我的例子中,解决方案是使用定义的路径
var fileName = global::Android.OS.Environment.ExternalStorageDirectory.AbsolutePath