gpt4 book ai didi

c# - 从 C# 应用程序打开 txt 文件

转载 作者:太空狗 更新时间:2023-10-30 00:01:12 26 4
gpt4 key购买 nike

下面的代码假设从我的 C# 应用程序打开 CMD 并打开文件 text.txt。

我试图将文件路径设置为环境变量,但当记事本打开时它会查找 %file%.txt 而不是 text.txt

知道为什么吗?

System.Diagnostics.Process proc = new System.Diagnostics.Process();
proc.EnableRaisingEvents=false;
proc.StartInfo.EnvironmentVariables.Add("file", "c:\\text.txt");
proc.StartInfo.UseShellExecute = false;
proc.StartInfo.FileName = "notepad";

proc.StartInfo.Arguments="%file%";
proc.Start();
proc.WaitForExit();

Console.WriteLine(proc.ExitCode);

最佳答案

如果您的目的是使用 .txt 文件启动编辑器(如问题的标题所述),只需使用:

Process.Start("C:\\text.txt")

关于c# - 从 C# 应用程序打开 txt 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/420484/

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