我正在尝试访问我的应用程序中的文件我已经创建了它并且它不在我的解决方案资源管理器中的文件夹中但是我试图通过从文本文件中拉出一些单词然后将其放入一个文件夹来访问它列表框按下按钮但没有发生任何事情可以有人帮助我解决可能出错的问题我不知道我是不是以正确的方式访问文件但这里是我的代码
async private void txtFileBtn_Click(object sender, RoutedEventArgs e)
{
try
{
// Get folder
Windows.Storage.StorageFolder localFolder = Windows.Storage.ApplicationData.Current.LocalFolder;
// Get the file path from hardcoded string
StorageFile sampleFile = await localFolder.GetFileAsync("ks1words.txt");
// Read the lines
var words = await FileIO.ReadLinesAsync(sampleFile);
// Create a list
List<string> wordList = new List<string>();
// Loops and add word to list
foreach (var word in words) { wordList.Add(word); } // fill a listbox with the words
// Set list as itemsource
lstBox.ItemsSource = wordList;
}
catch {
// Do nothing
}
}