我想运行一个 cmd 并在其中运行一些命令。我写了这段代码:
Process p = new Process();
ProcessStartInfo info =new ProcessStartInfo();
info.FileName = "cmd.exe";
info.WorkingDirectory = this.workingDirectory;
info.RedirectStandardInput = true;
info.UseShellExecute = false;
info.CreateNoWindow = true;
p.StartInfo = info;
var x=p.Start();
using (StreamWriter sw = p.StandardInput)
{
if (sw.BaseStream.CanWrite)
{
sw.WriteLine(@"set path=c:\temp"+ ";%path%");
sw.WriteLine(@"@MyLongproces.exe");
}
}
但它不起作用:
- 我看不到命令窗口(即使我设置
info.CreateNoWindow
为false
)。 - 我的命令没有运行。
问题是什么?我该如何解决?
- 更新1
此代码不起作用:
string binDirectory = Path.Combine(FileSystem.ApplicationDirectory, this.binFolderName);
ProcessStartInfo info = new ProcessStartInfo("cmd", @"/c " + Path.Combine(binDirectory, command));
info.RedirectStandardInput = false;
info.RedirectStandardOutput = true;
info.UseShellExecute = false;
info.CreateNoWindow = false;
System.Diagnostics.Process proc = new System.Diagnostics.Process();
proc.StartInfo = info;
proc.Start();
string result = proc.StandardOutput.ReadToEnd();
没有显示 cmd 窗口,结果是“”。
但是这段代码有效:
Process.Start(Path.Combine(binDirectory, command));
上面代码的问题是:
- 我无法定义工作目录。
- 当我不希望它显示时,它会显示一个 CMD 窗口。
知道为什么它不起作用吗?