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?
"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: