我刚刚玩Win32-API并希望使用CreateProcess
函数创建进程。我使用了MSDN网站上的以下代码:
#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 );
}
但令人惊讶的是,我无法使用这段代码创建dir
进程。错误代码表示&#39;系统找不到指定的文件。&#39;
我使用Visual Studio 2015和Windows 7 64Bit。但是,当我在Windows 10中运行相同的可执行文件时,一切正常。
答案 0 :(得分:1)
dir
不是可以运行的外部命令。它是Windows命令提示符内部的命令。您需要将您的程序称为myprogram "cmd /c dir"
才能执行此操作。
当然,有更好的方法来迭代目录而不是调用外部程序,但这是一个单独的问题。
答案 1 :(得分:0)
经过数小时的1500行C代码处理后,它终于使我意识到我的问题是什么,为什么它可以在我的一个Windows 10系统上运行,而不能在另一个Windows 10系统上运行。它工作的系统上,我确实有一个DIR.EXE。但是不是正在运行的COMSPEC DIR。我在Git和MinGW文件夹中有DIR.EXE。
阅读这篇文章,了解如何正确使用CREATEPROCESS。