1

我正在编写一个 Windows-Forms 应用程序,在该应用程序中我会在程序运行时记录一些数据,并使用以下代码将其写入一个临时文件中:

string path = Path.GetTempFileName();
byte[] text = new UTF8Encoding(true).GetBytes("Some Text");
using (FileStream fs = File.Open(path, FileMode.Open, FileAccess.Write, FileShare.None))
{
    fs.Write(text, 0, text.Length);
}

程序通过后,我想在 Microsoft 编辑器中显示/打开文件。我该怎么做。我用谷歌搜索但我没有找到任何东西,也许我用错误的词搜索。希望您能够帮助我。

4

1 回答 1

1

尝试:

Process.Start("Yourfile.txt")
于 2012-09-06T07:09:08.683 回答