我需要在我的C ++程序中执行此命令:
WinExec("program_name.exe", SW_SHOW);
我正在使用Visual Studio 2010.有没有办法使用变量,常量或其他东西,以避免字符串“program_name.exe”?现在它正在我的电脑上工作,但我的程序将在不同的计算机上进行测试,我不知道项目/ exe文件的名称。
答案 0 :(得分:2)
可执行文件名作为主函数中的参数传递:
int main(int argc, char **argv)
{
string exename = argv[0];
}
答案 1 :(得分:1)
(详细说明阿卜杜勒的回答:)
WinExec功能检查您的错误,如下面的代码所示。如果您有兴趣,可以阅读有关WinExec函数here的更多信息。
让我们看一下函数语法:
UINT WINAPI WinExec(
_In_ LPCSTR lpCmdLine,
_In_ UINT uCmdShow
);
由于LPCSTR
(指向常量字符串的长指针)实际上是const string
,您可以传递字符串类型作为它的第一个参数,但是您需要将其转换为const char *,这是实际上是LPCSTR
(指向字符串的长指针)。在下面的代码中,使用c_str()
。
#include<iostream>
#include<string>
#include<Windows.h>
using namespace std;
int main()
{
string appName="yourappname.exe";
int ExecOutput = WinExec(appName.c_str(), SW_SHOW);
/*
If the function succeeds, the return value is greater than 31.
If the function fails, the return value is one of the following error values.
0 The system is out of memory or resources.
ERROR_BAD_FORMAT The .exe file is invalid.
ERROR_FILE_NOT_FOUND The specified file was not found.
ERROR_PATH_NOT_FOUND The specified path was not found.
*/
if(ExecOutput > 31){
cout << appName << " executed successfully!" << endl;
}else {
switch(ExecOutput){
case 0:
cout << "Error: The system is out of memory or resources." << endl;
break;
case ERROR_BAD_FORMAT:
cout << "Error: The .exe file is invalid." << endl;
break;
case ERROR_FILE_NOT_FOUND:
cout << "Error: The specified file was not found." << endl;
break;
case ERROR_PATH_NOT_FOUND:
cout << "Error: The specified path was not found." << endl;
break;
}
}
return 0;
}
我有目的地排除了另一个功能(abdul创建的),不会从你的问题中脱离出来,并让你更清楚地了解你可以用WinExec函数实际做些什么。您可以轻松添加他创建的应用程序检查功能,并在其中放置您需要的任何其他检查。
答案 2 :(得分:0)
您可以将要运行的.exe文件存储在与运行它的.exe相同的位置,这样就可以保持硬编码的常量名称。
或者一个不错的方法是通过命令行参数传递要运行的程序名称,这是一个解析参数的教程: tutorial
这样你可以用变量替换该字符串,并在运行.exe时通过命令行传入名称。
答案 3 :(得分:-1)
打开conf文件 读取应用名称, 测试app是否存在 保存路径, 然后传递给函数
这只是一个例子,同样的想法
int main()
{
string appName;
if (getAppName(appName))
{
WinExec(appName.c_str(), SW_SHOW);
/// WinExec(appName, SW_SHOW);
/// ^^^ one of these
}
return 0;
}
功能看起来像这样
bool getAppName(string& appName)
{
string str;
///file open, and read;
///read(str)
if(fileExist(str))
{
appName = str;
return true;
}
return false;
}