0

大家好,我希望有人可以帮助我解决这个问题,我正在使用来自 msdn 的以下示例用于 createprocess 函数。

#include <windows.h>
#include <stdio.h>
#include <tchar.h>

void _tmain( int argc, TCHAR *argv[] )
{
    STARTUPINFO si;
    PROCESS_INFORMATION pi;

    ZeroMemory( &si, sizeof(si) );
    si.cb = sizeof(si);
    ZeroMemory( &pi, sizeof(pi) );

    if( argc != 2 )
    {
        printf("Usage: %s [cmdline]\n", argv[0]);
        return;
    }

    // Start the child process. 
    if( !CreateProcess( NULL,   // No module name (use command line)
        argv[1],        // Command line
        NULL,           // Process handle not inheritable
        NULL,           // Thread handle not inheritable
        FALSE,          // Set handle inheritance to FALSE
        0,              // No creation flags
        NULL,           // Use parent's environment block
        NULL,           // Use parent's starting directory 
        &si,            // Pointer to STARTUPINFO structure
        &pi )           // Pointer to PROCESS_INFORMATION structure
    ) 
    {
        printf( "CreateProcess failed (%d).\n", GetLastError() );
        return;
    }

    // Wait until child process exits.
    WaitForSingleObject( pi.hProcess, INFINITE );

    // Close process and thread handles. 
    CloseHandle( pi.hProcess );
    CloseHandle( pi.hThread );
}

这是通过 dos 访问的,并且在命令提示符下使用此命令可以完美运行。当我输入这个

this.exe "my.exe 测试" > result.txt

my.exe 是另一个接受输入测试的控制台应用程序,> result.txt 用于我的输出日志。我试图消除对命令行的需求,因此我试图将路径输入到 createprocess 函数调用中。这就是我卡在这里的地方是我正在尝试的

if( !CreateProcess( NULL,   // No module name (use command line)
        "\"my.exe test \" > result.txt",        // this.exe "my.exe test" > result.txt
        NULL,           // Process handle not inheritable
        NULL,           // Thread handle not inheritable

仍然不起作用我认为 \" 会给我我需要的结果,但它似乎不起作用,将解析 my.exe 和测试部分,但不解析 > result.txt 输出。但是,如果我通过,它可以在命令提示符下正常工作它到 argv[1]。

非常感谢任何帮助。

所以总而言之

在控制台中我可以解析

this.exe "my.exe test" > result.txt // Works fine via cmd.exe

我试过的应用程序

my.exe test > result.txt // Not work but missing ""

\"my.exe test \" > result.txt // work for first section 
4

2 回答 2

3

CreateProcess只需要一个可执行文件名和一些参数。重定向实际上不是程序参数。这由 shell ( cmd.exe) 解释。

当您调用自己的程序时发生的情况如下...

cmd> this.exe "my.exe test" > result.txt

argv[0] = "this.exe"
argv[1] = "my.exe test"
Output is sent to result.txt by the shell

现在,你的那个不起作用:

cmd> this.exe my.exe test > result.txt

argv[0] = "this.exe"
argv[1] = "my.exe"
argv[2] = "test"
Output is sent to result.txt by the shell

您会看到,因为您只发送argv[1]CreateProcess,所以行为与您预期的不同。

现在,正如我所提到的,CreateProcess实际上并没有重定向输出。为此,您应该使用system调用cmd.exe或系统使用的任何命令解释器的调用:

system( "my.exe test > result.txt" );

请参阅:http: //msdn.microsoft.com/en-us/library/277bwbdz (v=vs.80).aspx

于 2012-10-24T21:57:26.577 回答
3

CreateProcess仅通过将单词分解为单个参数来进行基本的命令行解析——它不理解文件重定向或任何东西。如果您传递它"> result.txt",它会尝试将其解析为字面上命名为">"和的两个参数"result.txt"

如果要重定向命令的输出,有两种选择:

  1. 自己做重定向。为此,您首先使用CreateFile(传入使句柄可继承的安全属性)打开文件,然后将生成的句柄分配给您传入hStdOut的结构的成员。然后,请记住在返回STARTUPINFO后关闭文件,CreateProcess因为否则你会泄漏一个句柄。
  2. 使用另一个程序进行重定向。当您在命令行上输入命令时,它cmd.exe会解析您的命令行并进行文件重定向。因此my.exe,您可以cmd.exe使用命令行创建一个进程,而不是创建一个进程,如下所示:

    cmd.exe "my.exe test > result.txt"
    
于 2012-10-24T21:54:32.810 回答