我的文档(.doc)存储在我的应用程序的IsolatedStorage中。我需要在Office应用程序中打开该文档。
经过长时间的搜索,我编码如下。但它显示错误。我需要知道如何将IsolatedStorageFileStream转换为IStorageFile。
这是我的代码:
var file = new IsolatedStorageFileStream(sFile, FileMode.Open, myFile);
await Launcher.LaunchFileAsync(file);
答案 0 :(得分:2)
我自己找到了答案:
var file = await ApplicationData.Current.LocalFolder.GetFileAsync(sFile);
await Launcher.LaunchFileAsync(file);