如何在 C# 中重定向 **现有** 进程的 STD-Out
我可以轻松启动一个进程并对其 STD I/O 进行重定向,但是如何重定向现有进程的 STD I/O。
Process process = Process.GetProcessById(_RunningApplication.AttachProcessId);
process.StartInfo.RedirectStandardOutput = true;
process.StartInfo.RedirectStandardError = true;
string text = process.StandardOutput.ReadToEnd(); //This line blows up.
例外:
StandardOut 尚未重定向或进程尚未开始。
旁注:如果您知道如何在 C/C++ 中执行此操作,我很乐意重新标记并接受。我只需要知道这是否可能。
I can easily start a process with it's STD I/O redirected but how can I redirect the STD I/O of an existing process.
Process process = Process.GetProcessById(_RunningApplication.AttachProcessId);
process.StartInfo.RedirectStandardOutput = true;
process.StartInfo.RedirectStandardError = true;
string text = process.StandardOutput.ReadToEnd(); //This line blows up.
Exception:
StandardOut has not been redirected or the process hasn't started yet.
Side note: If you know how to do this in C/C++ I'd be happy to re-tag and accept. I just need to know if it's even possible.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 C# 中似乎不可能。看看 C++ 中的可能性。
编辑:
您可以在 C# 中使用命名管道,如果您想要实现这一目标,这可能是获得 IPC 的更好方法。
It doesn't look like it's possible in C#. Looking at possibility in C++.
EDIT:
You can use named pipes in C# and that may be a better way to get IPC if that is what you are trying to accomplish.