如何在 C# 中重定向 **现有** 进程的 STD-Out

发布于 2024-11-18 21:42:46 字数 481 浏览 2 评论 0原文

我可以轻松启动一个进程并对其 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

绾颜 2024-11-25 21:42:46

在 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文