1

我写了这行代码:

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). 

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

4

1 回答 1

3

为了检索文件,请尝试使用MSDN 文档中的代码:

using Windows.Storage;

.

StorageFile file = await StorageFile.GetFileFromApplicationUriAsync("ms-appx:///Images/Hair Cuts/HC_1.jpg");
于 2013-04-03T20:17:30.433 回答