如何使用 CreateProcess 将输出重定向到文件?

2021-12-17 00:00:00 c winapi c++ io-redirection

我尝试使用 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?

推荐答案

不能在传递给 CreateProcess.要重定向标准输出,您需要在 STARTUPINFO 结构.

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 the STARTUPINFO structure.

您还犯了另一个更微妙的错误.第二个参数 lpCommandLine 必须指向可写内存,因为 CreateProcess 会覆盖缓冲区.如果您碰巧使用了该函数的 ANSI 版本,那么您可以避免使用该函数,但不适用于 Unicode 版本.

You are also making another, more subtle, mistake. The second parameter, lpCommandLine must point to writeable memory because CreateProcess 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.

这个函数的 Unicode 版本,CreateProcessW,可以修改这个字符串的内容.因此,该参数不能是指向只读内存的指针(例如const 变量或文字字符串).如果此参数是一个常量字符串,该函数可能会导致访问冲突.

The Unicode version of this function, CreateProcessW, can modify the contents of this string. Therefore, this parameter cannot be a pointer to read-only memory (such as a const variable or a literal string). If this parameter is a constant string, the function may cause an access violation.

相关文章