I'm working on a task that I need to find a way to determine what is the files provider if there is any.
I've tried with UWP StorageFiles/StorageFolders.
StorageFile storageFile = await filePicker.PickSingleFileAsync();
var provider = storageFile.Provider;
Code: Getting StorageFile instance in UWP.
Above example returns a provider name thats gonna be 'computer' or other cloud platform name.
This does not work in WPF. I've tried with Uno.UI but it seems like half of the functionality is not implemented.
Thank you in advance! :)