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

VC++.进程路径2

时间:2020-05-15 20:28:43      阅读:68      评论:0      收藏:0      [点我收藏+]

标签:pen   proc   info   ssid   getc   str   and   process   ++   

CString strCurProcessPath;
HANDLE hProcess = OpenProcess(PROCESS_QUERY_INFORMATION | PROCESS_VM_READ, 0, GetCurrentProcessId());
if (hProcess)
{
	TCHAR wsz[MAX_PATH] = { 0 };
	GetModuleFileNameEx(hProcess, 0, wsz, (MAX_PATH - 1) * sizeof(TCHAR));
	strCurProcessPath = wsz;
	CloseHandle(hProcess);
}

VC++.进程路径2

标签:pen   proc   info   ssid   getc   str   and   process   ++   

原文地址:https://www.cnblogs.com/dailycode/p/12896613.html

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