gpt4 book ai didi

c++ - 如何在c++中创建一个进程来执行exe?

转载 作者:塔克拉玛干 更新时间:2023-11-03 07:37:28 25 4
gpt4 key购买 nike

我必须执行某个驱动器上可用的 .exe。我如何使用 C++ 执行此操作?

我是这样做的:

#include <stdio.h>
#include <conio.h>
#include <windows.h>

void main()
{
STARTUPINFO si;

PROCESS_INFORMATION pi;

ZeroMemory( &si, sizeof(si) );
si.cb = sizeof(si);
ZeroMemory( &pi, sizeof(pi) );

if(!CreateProcess(L"c:\\DOTNET.exe",NULL,NULL, NULL,FALSE, 0,NULL,NULL,&si,&pi ) )
{
printf( "CreateProcess failed (%d).\n", GetLastError() );
}
else
{
printf("Prcess Creation Success");
}

WaitForSingleObject( pi.hProcess, INFINITE );
CloseHandle( pi.hProcess );
CloseHandle( pi.hThread );

getch();
}

但每次都显示此错误:

process creation failed with error code 2 (i.e can not find the path specified)

但我只将 DOTNET.exe 放在 c:\DOTNET.exe 中。

这段代码有什么问题?

最佳答案

我刚刚测试了你的代码,它在这里工作:

if(!CreateProcess(L"C:\\Program Files\\Mozilla Firefox\\firefox.exe",NULL,NULL, NULL,FALSE, 0,NULL,NULL,&si,&pi ) ) 

C/Win32 代码的 C++/Win32 解决方案:)

void ExecuteAndWait (wstring toto)
{
STARTUPINFO si = { sizeof(si) };
PROCESS_INFORMATION pi;
vector<TCHAR> V( toto.length() + 1);
for (int i=0;i< (int) toto.length();i++)
V[i] = toto[i];
CreateProcess(NULL, &V[0],0, 0, FALSE, 0, 0, 0, &si, &pi);
WaitForSingleObject(pi.hProcess, INFINITE);
CloseHandle(pi.hProcess);
CloseHandle(pi.hThread);
}

关于c++ - 如何在c++中创建一个进程来执行exe?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1172734/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com