使用 CreateProcess 函数创建“dir”命令失败,错误代码为 2

问题描述 投票:0回答: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
进程。错误代码表示'系统找不到指定的文件。'
我正在使用 Visual Studio 2015 和 Windows 7 64 位。但是当我在 Windows 10 中运行相同的可执行文件时,一切正常。

c++ winapi createprocess
2个回答
2
投票

dir
不是可以运行的外部命令。它是 Windows 命令提示符的内部命令。您需要将您的程序称为
myprogram "cmd /c dir"
才能做到这一点。

当然,有比调用外部程序更好的迭代目录的方法,但这是一个单独的问题。


0
投票

在经历了 1500 行 C 代码数小时后,我终于明白我的问题是什么,以及为什么它在我的一个 Windows 10 系统上工作,但在另一个系统上却不行。它运行的系统,我确实有一个 DIR.EXE。但它不是正在运行的 COMSPEC DIR。我在 Git 和 MinGW 文件夹中有 DIR.EXE。

阅读本文了解如何正确使用 CREATEPROCESS。

https://learn.microsoft.com/en-us/windows/desktop/api/processthreadsapi/nf-processthreadsapi-createprocessa

© www.soinside.com 2019 - 2024. All rights reserved.