0

1.Even i followed the link broadFileSystemAccess for UWP not working it cannot able to access in capability?. 2.when i tried to add this code in capability <respectability Name="broadFileSystemAccess" /> .

Please mention if any possibility?.

And my windows version build 18362.

  • Did you enable it in the apps settings in the Windows Settings app? Even if you enable in manifest, the user needs to manually open the settings app and allow permission – Johnny Westlake Apr 07 '20 at 13:03
  • @johnny,it is important that i need to be an member of developer center or Partner to access an broadFileSystemAccess – senthamizh selvan Apr 08 '20 at 04:07

1 Answers1

1

As Johnny Westlake said, after add broadFileSystemAccess capability, you also need to manually enable broad file system in File System setting page. For getting the setting page, you could search file system keywords in setting app home page.

enter image description here

If you want to quickly access this page, you could use the following method. For more info please refer Launch the Windows Settings app.

bool result = await Windows.System.Launcher.LaunchUriAsync(new Uri("ms-settings:privacy-broadfilesystemaccess")); 
Nico Zhu
  • 32,367
  • 2
  • 15
  • 36