监视 C# 中命令提示符的输出
有没有一种方法可以监视命令提示符的输出,而不将其输出重定向到流读取器,以便可以检测到其中是否显示错误消息?我正在使用 C#。
Is there a way to monitor the output of a command prompt without redirecting its output to a stream reader so that it can be detected if error messages display in it? I'm using C#.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
简单的答案:不。
如果您需要程序的控制台输出,则必须重定向其输出流。
Simple answer: No.
If you need the console output of a program you have to redirect its output stream.
您必须对 cmd.exe 进程使用 AttachConsole。
You must use AttachConsole for cmd.exe process.