gpt4 book ai didi

c# - 读取文本文件 C#

转载 作者:行者123 更新时间:2023-11-30 20:01:21 25 4
gpt4 key购买 nike

private void button1_Click(object sender, EventArgs e)
{
string fileLoc = @"c:\wms.txt";

if (File.Exists(fileLoc))
{
using (TextReader tr = new StreamReader(fileLoc))
{
MessageBox.Show(tr.ReadLine());
}
}
}

这在我创建 Windows 应用程序时非常有效。

当我在设备应用程序 - Windows CE 中使用相同的代码时,出现错误:

enter image description here

使用:.Net 2.0、visual Studio 2005

最佳答案

您的设备没有 c 驱动器。替换

string fileLoc = @"c:\wms.txt";

string fileLoc = @"wms.txt";

似乎根文件夹自动添加到您的路径中,带有 \

关于c# - 读取文本文件 C#,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19095887/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com