开发者

Get process argument info in windows with python/pywin32?

开发者 https://www.devze.com 2022-12-12 15:41 出处:网络
In linux, I know with \'ps\' you can get the arguments that a command was run with.I need the equivalent in windows

In linux, I know with 'ps' you can get the arguments that a command was run with. I need the equivalent in windows

Right now in python I'm doing

Process[i] = subprocess.Popen(cmd + " --daemon --config " + str(i) + ".conf", shell=False)

But I'm doing this in a daemon that is meant to be up all (or most) of the time. Since I'm having to debug and modify this daemon regularly it's starting up 3 processes; but wh开发者_JS百科en I shut it down, the processes stay up. (like should happen, just in case)...

When I start it back up again, I need to re-map the PID to the config file used by the processes that already exist, but I don't know of any way of retrieving this information (and parsing it) in windows. Does such a thing exist?


This one might give you some inspiration.

0

精彩评论

暂无评论...
验证码 换一张
取 消