我写了这行代码:
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).
此图像确实存在于指定的文件夹中。有人可以帮忙吗?
答案 0 :(得分:3)
要检索文件,请尝试使用MSDN documentation:
中的代码using Windows.Storage;
StorageFile file = await StorageFile.GetFileFromApplicationUriAsync("ms-appx:///Images/Hair Cuts/HC_1.jpg");