使用GetFileAsync读取文件时出错

时间:2013-04-03 20:04:34

标签: c# windows-runtime

我写了这行代码:

file = await Package.Current.InstalledLocation.GetFileAsync("ms-appx:///Images/Hair Cuts/HC_1.jpg");

但它抛出了这个例外:

WinRT information: An item cannot be found with the specified Name
(ms-appx:///Images/Hair Cuts/HC_1.jpg). 

此图像确实存在于指定的文件夹中。有人可以帮忙吗?

1 个答案:

答案 0 :(得分:3)

要检索文件,请尝试使用MSDN documentation

中的代码
using Windows.Storage;

StorageFile file = await StorageFile.GetFileFromApplicationUriAsync("ms-appx:///Images/Hair Cuts/HC_1.jpg");