大家好,我希望有人可以帮助我解决这个问题,我正在使用来自 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