我需要使用python脚本启动exe,但我还需要使用相同的脚本
来杀死它一个开始的想法是:
process = magicCommand( 'theExe.exe' ) #invoke exe
kill = 'no'
while kill == 'no':
kill = raw_input()
otherMagicCommand( process ) #kill
修改
这适用于我的窗口
process = subprocess.Popen( 'theExe.exe' ) #invoke exe
kill = 'no'
while kill == 'no':
kill = raw_input()
process.kill() #kill