无法转换为System.IO.IsolatedStorage.IsolatedStorageFileStream'到' Windows.Storage.IStorageFile'

时间:2014-07-04 10:03:54

标签: c# windows-phone-8 windows-phone

我的文档(.doc)存储在我的应用程序的IsolatedStorage中。我需要在Office应用程序中打开该文档。

经过长时间的搜索,我编码如下。但它显示错误。我需要知道如何将IsolatedStorageFileStream转换为IStorageFile。

这是我的代码:

var file = new IsolatedStorageFileStream(sFile, FileMode.Open, myFile);
await Launcher.LaunchFileAsync(file);

1 个答案:

答案 0 :(得分:2)

我自己找到了答案:

var file = await ApplicationData.Current.LocalFolder.GetFileAsync(sFile);
await Launcher.LaunchFileAsync(file);