Get the directory where the EXE file for a running process is located

Source: Internet
Author: User

Previously always get the directory where the current process is located, with GetModuleFileName.

How do I get the directory where the EXE file of another process is located in a process?
The steps are as follows:
(1) First look at the process's form name with the Remote process Viewer tool;
(2) Get the process ID;
(3) Get the Directory with GetModuleFileName ().

The sample code is as follows:

1HWND Hmxnavi =:: FindWindow (null,l"Mxnavi"); 2 TCHAR Tcnavipath[max_path]; 3DWORD Dwprocessid =0; 4 hmodule Hmodulemxnavi; 5   6   7 if(NULL! =Hmxnavi)8 {  9GetWindowThreadProcessId (hmxnavi,&dwprocessid); TenHmodulemxnavi =(hmodule) openprocess (PROCESS_ALL_ACCESS,FALSE,DWPROCESSID);  One GetModuleFileName (Hmodulemxnavi,tcnavipath,max_path);  ARetailmsg (1, (L"[Processcmdonekeynavi]navi Soft path:%s\r\n", Tcnavipath));  - }   - Else   the {   -}

Get the directory where the EXE file for a running process is located

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.