声明 broadFileSystemAccess 时触发用户同意对话框

Trigger user-consent dialog when broadFileSystemAccess declared

在我的 Package.appxmanifest 中,我声明了 broadFileSystemAccess 能力。

在代码中,我有一个 try...catch 语句用于测试文件访问切换的状态:

try
{
    var app1Folder = await StorageFolder.GetFolderFromPathAsync(@"C:\Users\krist\AppData\Local\Packagesdb24c29-1e69-4305-b62a-bcff344d6d41_915j3m6y7acyw");
}
catch (Exception ex)
{
    // prompt user for what action they should do then launch below
    // suggestion could be a message prompt
    var success = await Launcher.LaunchUriAsync(new Uri("ms-settings:appsfeatures-app"));
}

在关于这个broadFileSystemAccessthe blog post中说:

Just like other privacy issues, the app will trigger a user-consent prompt on first use.

我测试和看到的,根本没有用户同意提示。每篇文章或 SO 答案都指出我需要导航到用户需要切换“文件系统”开关的应用程序的设置(或应用程序设置)页面。

但是,从用户的角度来看,回答简单的“Yes/No”对话框并直接从应用程序授予该权限并使用新设置继续执行会很方便。

有什么方法可以触发用户同意对话框吗?

Is there any way how to trigger that user-consent dialog?

不,自 2018 年 10 月发布 Windows10 以来,它没有出现。从那时起您应该做的是提示用户在“设置”应用中更改设置 himself/herself,就像你现在正在做的那样。

更多信息请参考 Andrew Whitechapel 的回答here