gpt4 book ai didi

C++:验证 Windows 应用程序是否打开?

转载 作者:可可西里 更新时间:2023-11-01 14:49:27 27 4
gpt4 key购买 nike

我有一个 C++ 程序,需要打开一个应用程序(比如说 calculator.exe)。我需要能够进行测试以确保此应用程序已打开。这是我的意思的一个例子。

    #include <iostream.h>

int main()
{
system("start calculator");
if (something)
cout << "Calculator is running.\n";

cin.get();
return 0;
}

对于测试计算器是否打开的东西,我需要输入什么?

最佳答案

可以通过进程名查找,也可以通过窗口标题查找。

#include <iostream>
#include <windows.h>
#include <TlHelp32.h>

DWORD find_by_process_name(const wchar_t* process_name)
{
DWORD pid = 0;
HANDLE hndl = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS | TH32CS_SNAPMODULE, 0);
if (hndl)
{
PROCESSENTRY32 process = { sizeof(PROCESSENTRY32) };
Process32First(hndl, &process);
do
{
if (_wcsicmp(process.szExeFile, process_name) == 0)
{
pid = process.th32ProcessID;
break;
}
} while (Process32Next(hndl, &process));

CloseHandle(hndl);
}

return pid;
}

int main()
{
ShellExecuteA(0, "open", "calc.exe", 0, 0, SW_SHOWNORMAL);
if (find_by_process_name(L"calc.exe"))
std::cout << "calculator is running\n";
return 0;
}

关于C++:验证 Windows 应用程序是否打开?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29738803/

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