我有两个csv文件。我需要根据设备上选择的语言解析其中一个文件。我已将它们放在Resources文件夹中,并使用限定符(en-US,da-DK)创建了两个文件夹。在这两个文件夹中,我放了两个同名的文件(例如answers.csv)。当我运行应用程序时,它说它无法找到该文件。
我使用以下代码将文件转换为StreamReader
StorageFolder installationFolder = Util.CommonUtils.getAppLocation();
StorageFile file = await installationFolder.GetFileAsync(path);
Stream stream = await file.OpenStreamForReadAsync();
StreamReader reader = new StreamReader(path);
我在这里缺少什么?