通用Windows平台中找不到文件异常

时间:2016-08-04 19:51:24

标签: c# windows exception windows-10-universal

Plase,帮帮我,我在C#里面有一些代码,在一些异步方法中我使用通用Windows平台(Windows 10 SDK 10.0.14393):

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

问题是这个异常:mscorlib.ni.dll中发生了System.IO.FileNotFoundException。

Visual Studio向我显示,该文件位于Assets文件夹中,文件正常,因为它正常打开(它是非常短的json文件)。可能是什么问题或解决这个问题的方法是什么?

this image shows, that the file is inside the Assets folder

1 个答案:

答案 0 :(得分:5)

BuildAction更改为ContentCopy to Output DirectoryDo not copy更改为Awayls

enter image description here