我想编写一个函数,它非常简单地最小化我的 Windows 8 沉浸式应用程序,并在资源管理器中打开一个文件 - 最好是该文件位于包含多个文件的文件夹中,并突出显示该文件。
public async void OpenFile( string filePath)
{
StorageFile File = await StorageFile.GetFileFromApplicationUriAsync
(new Uri(filePath, UriKind.RelativeOrAbsolute)); ;
if (File != null)
{
await Launcher.LaunchUriAsync(new Uri(File.Path));
}
}
这段代码给了我一个权限错误。有任何想法吗?