有没有办法从试图打开它的C ++程序验证程序是否打开(Win​​dows)?

时间:2015-04-20 03:19:34

标签: c++ windows

我有一个涉及打开程序的C ++程序(假设是compute.exe)。我需要能够测试以确保该程序是开放的。这是我的意思的一个例子。

#include <iostream.h>

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

    cin.get();
    return 0;
}

我需要为测试计算器是否打开的xxxxx提供什么?

1 个答案:

答案 0 :(得分:5)

您可以按流程名称找到它,也可以按窗口标题找到它。

#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;
}