windows上如何判断一个进程是否正在运行

时间:2021-08-26 04:58:12

很多时候我们做开发时涉及多个进程间互相配合才能完成一些任务,数据交互可以考虑共享内存、本地socket、文件,操作同步或互斥可以考虑信号量,但是这些的前提是你另一个进程存在你才能正常运行,那么怎么判断另一个进程是否存在呢?下面的代码就可以根据进程名称去判断任意一个进程是否正在运行。如参数为"QQ.exe",就可以判断QQ是否正在运行了。


bool IsProcessRun(char *pName)
{
HANDLE hProcessSnap;
HANDLE hProcess;
PROCESSENTRY32 pe32;
DWORD dwPriorityClass;

bool bFind = false;
// Take a snapshot of all processes in the system.
hProcessSnap = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0);
if (hProcessSnap == INVALID_HANDLE_VALUE)
{
return false;
}

// Set the size of the structure before using it.
pe32.dwSize = sizeof(PROCESSENTRY32);

// Retrieve information about the first process,
// and exit if unsuccessful
if (!Process32First(hProcessSnap, &pe32))
{
CloseHandle(hProcessSnap); // clean the snapshot object
return false;
}

// Now walk the snapshot of processes, and
// display information about each process in turn
do
{
// Retrieve the priority class.
dwPriorityClass = 0;
if (::strstr(pe32.szExeFile, pName) != NULL)
{
bFind = true;
break;
}
} while (Process32Next(hProcessSnap, &pe32));

CloseHandle(hProcessSnap);
return bFind;
}