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);