码迷,mamicode.com
首页 > 编程语言 > 详细

判断当前进程是否已经打开C++

时间:2020-05-23 09:18:24      阅读:79      评论:0      收藏:0      [点我收藏+]

标签:snap   nap   mes   roc   char   and   har   end   first   

int foundProcessByName(const char *filename)
{
	int foundProcessTimes = 0;
	HANDLE hSnapShot = CreateToolhelp32Snapshot(TH32CS_SNAPALL, NULL);
	PROCESSENTRY32 pEntry;
	pEntry.dwSize = sizeof(pEntry);
	BOOL hRes = Process32First(hSnapShot, &pEntry);
	while (hRes)
	{
		_bstr_t b(pEntry.szExeFile);
		const char* c = b;
		if (strcmp(c, filename) == 0)
		{
			std::wstring ws(pEntry.szExeFile);
			std::string test(ws.begin(), ws.end());
			//qDebug() << QString("Found Process %1").arg(QString::fromStdString(test));
			foundProcessTimes++;
		}
		hRes = Process32Next(hSnapShot, &pEntry);
	}
	CloseHandle(hSnapShot);
	return foundProcessTimes;
}

if(foundProcessByName("ThreadName") > 1)
{
  //进程已打开。      
}

  

判断当前进程是否已经打开C++

标签:snap   nap   mes   roc   char   and   har   end   first   

原文地址:https://www.cnblogs.com/foreversdf/p/12900519.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!