StorageFolder "access denied"

1.2k Views Asked by At

My problem is i want to save a picture on a network path

i have tried this:

private async void BtnSave_Click(object sender, RoutedEventArgs e)
{
     StorageFolder storageFolder = await StorageFolder.GetFolderFromPathAsync(@"\\myserver\signatures");

     StorageFile file = await storageFolder.GetFileAsync("InkSample.jpg");
}

But I get an error : Access denied. How can i fix this error?

1

There are 1 best solutions below

3
On BEST ANSWER

"access denied" may be caused by missing some capabilities:

  • The home and work networks capability: PrivateNetworkClientServer

  • And at least one internet and public networks capability: InternetClient, InternetClientServer

  • And, if applicable, the domain credentials capability: EnterpriseAuthentication

  • Note: You must add File Type Associations to your app manifest that declare specific file types that your app can access in this location.

Ref: "file access permission"

After adding these capabilities, UWP app works on desktop but not working for me on Windows IoT Core device. And I get the following error:

"Cannot access the specified file or folder. The item is not in a location that the application has access to (including application data folders, folders that are accessible via capabilities, and persisted items in the StorageApplicationPermissions lists). Verify that the file is not marked with system or hidden file attributes."