如何在windows通用应用程序中读取文本文件

本文关键字:读取 取文本 文件 应用程序 windows | 更新日期: 2023-09-27 18:28:54

我正在尝试读取一个名为thedata.txt的文本文件,该文件包含我想在刽子手游戏中使用的单词列表。我尝试过不同的方法,但我不知道文件放在哪里,如果在应用程序运行的时候。我将该文件添加到我的项目中,并尝试将生成属性设置为内容,然后设置为嵌入资源,但找不到该文件。我做了一个Windows10通用应用程序项目。我尝试的代码看起来像这样:

  Stream stream = this.GetType().GetTypeInfo().Assembly.GetManifestResourceStream("thedata.txt");
            using (StreamReader inputStream = new StreamReader(stream))
            {
                while (inputStream.Peek() >= 0)
                {
                    Debug.WriteLine("the line is ", inputStream.ReadLine());
                }
            }

我有例外。我还尝试在另一个目录中列出文件:

 string path = Windows.Storage.ApplicationData.Current.LocalFolder.Path;
            Debug.WriteLine("The path is " + path);
            IReadOnlyCollection<StorageFile> files = await Windows.Storage.ApplicationData.Current.LocalFolder.GetFilesAsync();
            foreach (StorageFile file2 in files)
            {
                Debug.WriteLine("Name 2 is " + file2.Name + ", " + file2.DateCreated);
            }

我也看不到那里的文件。。。我想避免在我的程序中对名称列表进行硬编码。我不确定文件的路径是什么。

如何在windows通用应用程序中读取文本文件

代码非常简单,您只需要使用一个有效的方案URI(在您的情况下为ms-appx)并将WinRT InputStream转换为经典的.NET流:

var file = await StorageFile.GetFileFromApplicationUriAsync(new Uri("ms-appx:///thedata.txt"));
using (var inputStream = await file.OpenReadAsync())
using (var classicStream = inputStream.AsStreamForRead())
using (var streamReader = new StreamReader(classicStream))
{
    while (streamReader.Peek() >= 0)
    {
        Debug.WriteLine(string.Format("the line is {0}", streamReader.ReadLine()));
    }
}

对于嵌入文件的属性,"生成操作"必须设置为"内容","复制到输出目录"应设置为"不复制"。

您不能在Windows运行时应用程序中使用经典的.NET IO方法,在UWP中读取文本文件的正确方法是:

var file = await ApplicationData.Current.LocalFolder.GetFileAsync("data.txt");
var lines = await FileIO.ReadLinesAsync(file);

此外,您不需要文件夹的物理路径-来自msdn:

不要依赖此属性访问文件夹,因为文件系统路径对某些文件夹不可用。例如,在以下在这种情况下,文件夹可能没有文件系统路径或文件系统路径可能不可用。•文件夹表示文件组(例如,的某些重载的返回值GetFoldersAsync方法),而不是文件中的实际文件夹系统。•文件夹由URI支持。•文件夹由拾取使用文件选择器。

有关更多详细信息,请参阅文件访问权限。创建、写入和读取文件提供了与Windows 10上UWP应用程序的文件IO相关的示例。

您可以使用应用程序URI直接从应用程序的本地文件夹中检索文件,如下所示:

using Windows.Storage;
StorageFile file = await StorageFile.GetFileFromApplicationUriAsync("ms-appdata:///local/file.txt");