This question already has answers here:
How to query a running process for it's parameters list? (windows, C++)
                                
                                    (4个答案)
                                
                        
                                5年前关闭。
            
                    
Windows API具有GetCommandLine(),它返回用于启动当前进程的命令行。

是否有等效的命令使用OpenProcess()返回的句柄来获取另一个进程的命令行?

最佳答案

在“检查PID文件是否引用正确的程序”的狭义范围内,GetProcessImageFileName()可能是有用的替代方法。

关于c - 其他进程的GetCommandLine()? ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/22542017/

10-11 17:58