FileNotFoundException从Windows应用商店应用中的Assets文件夹中读取JSON文件

时间:2014-01-08 11:08:04

标签: c# windows file-io windows-runtime windows-store

我正在尝试从我的Assets文件夹中读取json文件。我尝试了很多代码示例,并且所有代码都是相同的。

我觉得我必须做一些愚蠢的事,但我看不到它。

string filepath = @"Assets\resources.json";
StorageFolder folder = Windows.ApplicationModel.Package.Current.InstalledLocation;
StorageFile file = await folder.GetFileAsync(filepath); // error here
var data = await Windows.Storage.FileIO.ReadTextAsync(file);

每次运行上述代码时,我的应用都会获得System.IO.FileNotFoundException。我已经加倍并三倍检查文件是在资源文件夹中,并且我的路径中没有拼写错误。

我也试过这个

StorageFile file = await StorageFile.GetFileFromApplicationUriAsync(new Uri("ms-appx:///Assets/resources.json"));

同样的错误。 System.IO.FileNotFoundException

我的Assets文件夹的屏幕截图:

Screenshot of my Assets folder

1 个答案:

答案 0 :(得分:25)

构建操作下的文件属性(右键单击和属性)中,您确定选择内容吗?另外,请确保复制到输出目录设置为始终复制。这应该可以为你解决问题。