我試圖創建在Windows應用商店的應用程序中,我必須存儲在一個JSON文件的聯繫人電話簿應用程序。我想從項目的Assets文件夾創建並訪問該Json文件。如何從我的Windows應用商店應用項目中的資產文件夾中獲取文件?
我曾嘗試以下(都未上班):
Create, Write, and Read a file - Microsoft
Jerry Nixon's Blog about Reading and Writing from Files
和許多其他...
我曾嘗試以下代碼:
StorageFile SFile = await StorageFile.GetFileFromApplicationUriAsync(new Uri("ms-appx:///Assets/Data.txt"));
var display = new Windows.UI.Popups.MessageDialog(SFile.Path);
await display.ShowAsync();
如果有人可以建議我做這件事的方式。謝謝 !
它看起來像路徑是錯誤的:「MS-APPX :///Assets/Data.txt「 – jdweng
我在兩個路徑中看不到任何區別。 @jdweng –
那條路怎麼了? @jdweng –