作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我必须执行某个驱动器上可用的 .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/
我是一名优秀的程序员,十分优秀!