打开文件:System.Diagnostics.Process.Start("文件路径"); 读取文件首先Using System.IO; FileStream fs = new FileStream("文件路径" ,FileMode.Open);
StreamReader sr = new StreamReader(fs);
this.txtMessage.Text = sr.ReadToEnd();这样文本框txtMessage里面的内容就是你要读取的文件中内容
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里的内容了...
如果是打开文件的话用:System.Diagnostics.Process.Start("文件名");如果是打开文件里面的内容:用文件流System.IO里面的streamReader