使用 CreateProcess 函数创建 "dir" 命令失败,错误代码为 2
Creating "dir" command using CreateProcess function failed with error code 2
我只是在玩 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
进程。错误代码表示 'The system cannot find the file specified.'
我使用的是 Visual studio 2015 和 Windows 7 64 位。但是当我 运行 在 Windows 10 中使用相同的可执行文件时,一切正常。
dir
不是可以运行的外部命令。这是 Windows 命令提示符的内部命令。您需要将您的程序称为 myprogram "cmd /c dir"
才能做到这一点。
当然,有比调用外部程序更好的迭代目录的方法,但这是一个单独的问题。
在经历了 1500 行 C 代码数小时后,我终于明白我的问题是什么,以及为什么它在我的一个 Windows 10 系统上工作,但在另一个系统上却不行。它运行的系统,我确实有 DIR.EXE。但这不是 运行 的 COMSPEC DIR。我在 Git 和 MinGW 文件夹中有 DIR.EXEs。
阅读本文了解如何正确使用 CREATEPROCESS。
我只是在玩 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
进程。错误代码表示 'The system cannot find the file specified.'
我使用的是 Visual studio 2015 和 Windows 7 64 位。但是当我 运行 在 Windows 10 中使用相同的可执行文件时,一切正常。
dir
不是可以运行的外部命令。这是 Windows 命令提示符的内部命令。您需要将您的程序称为 myprogram "cmd /c dir"
才能做到这一点。
当然,有比调用外部程序更好的迭代目录的方法,但这是一个单独的问题。
在经历了 1500 行 C 代码数小时后,我终于明白我的问题是什么,以及为什么它在我的一个 Windows 10 系统上工作,但在另一个系统上却不行。它运行的系统,我确实有 DIR.EXE。但这不是 运行 的 COMSPEC DIR。我在 Git 和 MinGW 文件夹中有 DIR.EXEs。
阅读本文了解如何正确使用 CREATEPROCESS。