我们以这种方式将文件添加到StorageFolder
:
StorageFolder local = Windows.Storage.ApplicationData.Current.LocalFolder;
var dataFolder = await local.CreateFolderAsync("DataFolder",
CreationCollisionOption.OpenIfExists);
var file = await dataFolder.CreateFileAsync("DataFile.txt",
CreationCollisionOption.ReplaceExisting);
但是如何在设计器中添加所需的文件,有一些图片,文本,如何添加它们以便稍后在应用程序中使用?
答案 0 :(得分:1)
只需将文件添加到您的项目中,并确保Build Action
设置为Content
。