gpt4 book ai didi

c# - Process.WaitForExit 挂起 - 但我只重定向标准输入?

转载 作者:行者123 更新时间:2023-12-04 14:14:35 29 4
gpt4 key购买 nike

我正在尝试执行一个批处理脚本,该脚本在末尾包含一个我想确认的暂停语句:

var psi = new ProcessStartInfo(path, arguments);
psi.RedirectStandardInput = true;
psi.UseShellExecute = false;
psi.WorkingDirectory = workDir;

var p = Process.Start(psi);
p.StandardInput.WriteLine();
p.WaitForExit();

然而,尽管进程已经完成,这段代码永远卡在 WaitForExit 中。我知道您在重定向标准输出/错误时必须读取缓冲区。重定向标准输入也有什么特别之处吗?

最佳答案

可以引用RedirectStandardInput文档和示例。在向它写入一行以正确处理暂停语句后,您应该关闭 StandardInput

p.StandardInput.WriteLine();
p.StandardInput.Close();
p.WaitForExit();

关于c# - Process.WaitForExit 挂起 - 但我只重定向标准输入?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61728127/

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