如何针对同一输出同步运行进程?

时间:2010-06-22 18:39:09

标签: c# .net process stdout

我有一个需要运行多个可执行文件的.Net应用程序。我正在使用Process类,但Process.Start不会阻塞。我需要在第二次运行之前完成第一个过程。我怎么能这样做?

此外,我希望所有进程都输出到同一个控制台窗口。事实上,他们似乎打开了自己的窗户。我确定我可以使用StandardOutput流写入控制台,但是如何禁止默认输出?

1 个答案:

答案 0 :(得分:11)

我相信你在寻找:

Process p = Process.Start("myapp.exe");
p.WaitForExit();

输出:

StreamReader stdOut = p.StandardOutput;

然后你像任何流阅读器一样使用它。

要抑制窗口,有点困难:

ProcessStartInfo pi = new ProcessStartInfo("myapp.exe");
pi.CreateNoWindow = true;
pi.UseShellExecute = true;

// Also, for the std in/out you have to start it this way too to override:
pi.RedirectStandardOutput = true; // Will enable .StandardOutput

Process p = Process.Start(pi);