如何使用 CreateProcess 将输出重定向到文件?
我尝试使用 CreateProcess 运行一个简单的命令,例如 hg >测试.txt
。我尝试将字符串作为一个整体运行(而不是将其分成应用程序名称及其参数)。为什么 CreateProcess(0, "notepad.exe test.txt", ...)
有效,但 CreateProcess(0, "hg > test.txt", ...)
有效代码> 不是吗?
I tried using CreateProcess to run a simple command like hg > test.txt
. I tried running the string as a whole (as opposed to separating it into an application name and its parameters). Why does CreateProcess(0, "notepad.exe test.txt", ...)
work but CreateProcess(0, "hg > test.txt", ...)
does not?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
下面的代码创建一个无控制台进程,并将 stdout 和 stderr 重定向到指定文件。
The code below creates a console-less process with stdout and stderr redirected to the specified file.
您无法在传递到 的命令行中使用 stdout 重定向
创建进程
。要重定向标准输出,您需要在STARTUPINFO
结构。你还犯了另一个更微妙的错误。第二个参数 lpCommandLine 必须指向可写内存,因为 CreateProcess 会覆盖缓冲区。如果您碰巧使用该函数的 ANSI 版本,那么您将摆脱这种情况,但对于 Unicode 版本则不然。
You can't use stdout redirection in the command line passed to
CreateProcess
. To redirect stdout you need to specify a file handle for the output in theSTARTUPINFO
structure.You are also making another, more subtle, mistake. The second parameter,
lpCommandLine
must point to writeable memory becauseCreateProcess
overwrites the buffer. If you happen to be using the ANSI version of the function then you will get away with this, but not for the Unicode version.微软有一个如何重定向标准输出的示例:
http://msdn.microsoft.com/en-us/库/ms682499(VS.85).aspx。
Microsoft has an example how to redirect the standard output:
http://msdn.microsoft.com/en-us/library/ms682499(VS.85).aspx.
CreateProcess() 启动进程,它不是命令行解释器。它不知道什么是“>”是并且不会为您进行流重定向。您需要自己打开文件 test.txt 并将其句柄传递给 STARTUPINFO 结构中的 CreateProcess :
CreateProcess
STARTUPINFO
CreateProcess() launches processes, it is not a command line itnerpreter. It doesn't know what ">" is and won't do the stream redirection for you. You need to open the file test.txt yourself and pass the handle to it to CreateProcess inside the STARTUPINFO structure:
CreateProcess
STARTUPINFO
您应该使用参数“/c command line”运行进程 cmd.exe。
这会将输出重定向到文件或通过 CreateProcess 组织管道。
you should run process cmd.exe with params "/c command line".
This will redirect the output to a file or to organize a pipeline through CreateProcess.