cannot convert from 'System.IO.IsolatedStorage.IsolatedS
本文关键字:System IO IsolatedStorage IsolatedS convert from cannot | 更新日期: 2023-09-27 18:11:21
我有文档(.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);