gpt4 book ai didi

c# - 如何以相同的输出为目标同步运行进程?

转载 作者:太空狗 更新时间:2023-10-29 21:11:04 24 4
gpt4 key购买 nike

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

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

最佳答案

我相信您正在寻找:

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);

关于c# - 如何以相同的输出为目标同步运行进程?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3096097/

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