我在windows.h的c ++文件中引入了CreatProcess函数的问题。 每当我尝试传递一个包含cmd命令的TCHAR变量时,它返回错误:CreateProcess failed(2)。 为此我正在等待您的解释和解决方案。
考虑以下代码:
#include <windows.h>
#include <stdio.h>
#include <tchar.h>
int _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 0;
}
// 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 0;
}
// Wait until child process exits.
WaitForSingleObject( pi.hProcess, INFINITE );
// Close process and thread handles.
CloseHandle( pi.hProcess );
CloseHandle( pi.hThread );
}
注意:当我启动一个指定其路径的应用程序时...就像=&gt;一样好用“C:\ code.exe”;
答案 0 :(得分:1)
如果要运行命令DOS
,则必须先运行shell cmd
。
CreateProcess
并不适合你。
/c
的选项cmd
允许在shell中运行命令并终止。您只需构建cmd /c <your command here>
类型的命令行。
我在VS2012上编译了你的代码,我尝试了:test.exe "cmd /c dir"
它就像一个魅力。
来自Microsoft文档:
要运行批处理文件(或批处理命令),必须启动命令解释程序;将lpApplicationName设置为cmd.exe并将lpCommandLine设置为以下参数:/ c加上批处理文件的名称。
来源:http://msdn.microsoft.com/en-us/library/windows/desktop/ms682425(v=vs.85).aspx
答案 1 :(得分:0)
为了执行命令shell aka cmd.exe
实现的命令,您需要实际运行cmd.exe。 CreateProcess
不会自动为您执行此操作。
构建cmd.exe /c <your command here>
形式的命令行。 /c
表示“运行一个命令,然后终止”。