运行和终止程序(Windows 下的 Python)
我想创建一个基本上执行此操作的小脚本:
run program1.exe --> kill program1.exe
after n seconds --> run program1.exe again.
我了解一些基本的 Python 并且会阅读此内容,但我有点着急,只需要尽快完成即可。
如果有人有脚本/想法或者可以帮助我解决打开和终止 .exe 文件所需的语法,请...我也不介意其他语言的解决方案。如果这有点“请编写我的代码”,我很抱歉,这不是我通常做的事情。
I'd like to create a small script that basically does this:
run program1.exe --> kill program1.exe
after n seconds --> run program1.exe again.
I know some basic Python and would read up on this, but I'm in a bit of a hurry and just need this to get done ASAP.
If someone has a script/idea or could help my out with just the syntax I need to open and kill the .exe file, please... I don't mind solutions in other languages either. I'm sorry if this is a bit "please write my code"-ish, that's not something I typically do.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
阅读子流程模块。
Read up on the subprocess module.