我的文档(.doc)存储在应用程序的IsolatedStorage中。我需要在Office应用程序中打开该文档。
经过很长的搜索,我编码如下。但是显示错误。我需要知道如何将IsolatedStorageFileStream转换为IStorageFile。
这是我的代码:
var file = new IsolatedStorageFileStream(sFile, FileMode.Open, myFile);
await Launcher.LaunchFileAsync(file);
最佳答案
我自己找到了答案:
var file = await ApplicationData.Current.LocalFolder.GetFileAsync(sFile);
await Launcher.LaunchFileAsync(file);
关于c# - 无法从“System.IO.IsolatedStorage.IsolatedStorageFileStream”转换为“Windows.Storage.IStorageFile”,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/24571754/