You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After creating a path using the PortablePath and passing in LocalStorage, I am only able to access it if I use GetFileFromPathAsync. It fails when I use LocalStorage.GetFileAsync. It wo
string path = PortablePath.Combine(FileSystem.Current.LocalStorage.Path, model.filename);
//Succeeds on UWP, iOS, and Android
IFile file = await FileSystem.Current.GetFileFromPathAsync(path);
//Fails on UWP, succeeds on iOS and Android
IFile file = await FileSystem.Current.LocalStorage.GetFileAsync(path);
The text was updated successfully, but these errors were encountered:
After creating a path using the PortablePath and passing in LocalStorage, I am only able to access it if I use GetFileFromPathAsync. It fails when I use LocalStorage.GetFileAsync. It wo
The text was updated successfully, but these errors were encountered: