通过输入程序位置启动可执行(exe)程序, 使用windows的CreateProcess()函数, 即可.
示例是调用预先生产的可执行(exe)程序.
代码:
/* * main.cpp * * Created on: 2014.06.08 * Author: Spike */ /*vs 2012*/ #include <iostream> #include <windows.h> using namespace std; bool startProcess (const std::string name_) { STARTUPINFO si; //参数设置 memset(&si, 0, sizeof(STARTUPINFO)); si.cb = sizeof(STARTUPINFO); si.dwFlags = STARTF_USESHOWWINDOW; si.wShowWindow = SW_SHOW; PROCESS_INFORMATION pi; //参数结束 /*printf("Please enter the name of process to start:"); std::string name; cin >> name;*/ if (!CreateProcess(NULL, (LPSTR)name_.c_str(), NULL, NULL, FALSE, 0,NULL,NULL,&si,&pi)) { cout<<"Create Error!"<<endl; return false; } else { cout<<"Create Sucess!"<<endl; } return true; } int main() { const std::string name = "D:/Test/Image.exe"; if (!startProcess(name)) { cout << "Start Process Error!" << endl; } return 0; }
注: Image.exe 是预先生产的可执行(exe)程序.
作者:csdn博客 Spike_King
更多精彩内容:http://www.bianceng.cnhttp://www.bianceng.cn/Programming/cplus/
以上是小编为您精心准备的的内容,在的博客、问答、公众号、人物、课程等栏目也有的相关内容,欢迎继续使用右上角搜索按钮进行搜索include
, 程序
, 参数
, null
, name
, createprocess
EXE可执行程序
异常代码 c0000005、贪吃蛇c语言代码、c语言代码、c 代码生成器、c 源代码,以便于您获取更多的相关知识。
时间: 2024-12-10 03:14:29