c# windows from 打开程序所在目录下的一个txt文档

c#打开程序所在目录下的一个txt文档
2025-04-03 19:08:28
推荐回答(3个)
回答1:

打开文件:System.Diagnostics.Process.Start("文件路径"); 读取文件首先Using System.IO; FileStream fs = new FileStream("文件路径" ,FileMode.Open);
StreamReader sr = new StreamReader(fs);
this.txtMessage.Text = sr.ReadToEnd();这样文本框txtMessage里面的内容就是你要读取的文件中内容

回答2:

Application.StartupPath这个指的是程序所在的目录..要打开程序所在目录下的一个txt文档的话可以这样写:FileStream fs = new FileStream(Application.StartupPath+ "\\log.txt", FileMode.OpenOrCreate, FileAccess.ReadWrite);
StreamReader sr = new StreamReader(fs);
this.txtLog.Text = sr.ReadToEnd();这样文本框txtLog里面的内容就是log.txt里的内容了...

回答3:

如果是打开文件的话用:System.Diagnostics.Process.Start("文件名");如果是打开文件里面的内容:用文件流System.IO里面的streamReader