根据进程ID获取进程绝对路径

参考:

http://www.bubuko.com/infodetail-1727473.html

https://blog.csdn.net/weixin_33751566/article/details/93942450

 

// 获取进程路径
CString CMFCApplication1Dlg::GetProcessPath(DWORD dwProcessID)
{
	CString strProcessPath;

	HANDLE hProcess = OpenProcess(PROCESS_QUERY_INFORMATION | PROCESS_VM_READ, FALSE, dwProcessID);
	if (hProcess == NULL)
	{
		int nErr = GetLastError();
		CString strErr;
		strErr.Format("%d", nErr);
		MessageBox(strErr);
		return "";
	}

    // 获取x86程序的路径
	if (GetModuleFileNameEx(hProcess, NULL, strProcessPath.GetBufferSetLength(MAX_PATH), MAX_PATH) == 0)
	{
        // 获取64位程序的路径
		if (GetProcessImageFileName(hProcess, strProcessPath.GetBufferSetLength(MAX_PATH), MAX_PATH) == 0)
		{
			strProcessPath = "";
		}
		else
		{
            // 转为绝对路径
			strProcessPath = DosDevicePath2LogicalPath(strProcessPath);
		}
	}
	strProcessPath.ReleaseBuffer();

	CloseHandle(hProcess);

	return strProcessPath;
}



// 把DOS路径转为绝对路径
CString CMFCApplication1Dlg::DosDevicePath2LogicalPath(LPCTSTR lpszDosPath)
{
	CString strResult;

	// Translate path with device name to drive letters.
	TCHAR szTemp[MAX_PATH];
	szTemp[0] = '\0';

	if (lpszDosPath == NULL || !GetLogicalDriveStrings(_countof(szTemp) - 1, szTemp)) {
		return strResult;
	}


	TCHAR szName[MAX_PATH];
	TCHAR szDrive[3] = TEXT(" :");
	BOOL bFound = FALSE;
	TCHAR* p = szTemp;

	do {
		// Copy the drive letter to the template string
		*szDrive = *p;

		// Look up each device name
		if (QueryDosDevice(szDrive, szName, _countof(szName))) {
			UINT uNameLen = (UINT)_tcslen(szName);

			if (uNameLen < MAX_PATH)
			{
				bFound = _tcsnicmp(lpszDosPath, szName, uNameLen) == 0;

				if (bFound) {
					// Reconstruct pszFilename using szTemp
					// Replace device path with DOS path
					TCHAR szTempFile[MAX_PATH];
					_stprintf_s(szTempFile, TEXT("%s%s"), szDrive, lpszDosPath + uNameLen);
					strResult = szTempFile;
				}
			}
		}

		// Go to the next NULL character.
		while (*p++);
	} while (!bFound && *p); // end of string

	return strResult;
}

 

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值