假设在进程中有个1.exe的进程。。。通过vb如何找到1.exe这个程序的实际位置。(在硬盘上保存的位置)如c:\windows
最好有源码。。。。谢谢!!!
假设在进程中有个1.exe的进程。。。通过vb如何找到1.exe这个程序的实际位置。(在硬盘上保存的位置)如c:\windows
最好有源码。。。。谢谢!!!
Public Declare Function GetModuleFileName Lib "kernel32" Alias "GetModuleFileNameA" (ByVal hModule As Long, ByVal lpFileName As String, ByVal nSize As Long) As Long
这个API就可以了,先取到1.exe的PID,打开进程,再取hModule=0就可以得到1.EXE的路径了
假设你能看到进程中的“1。EXE”那你应该能看到它所在的位置!