こんにちは、誰かがこの問題で私を助けてくれることを願っています。私は、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