您好我正在尝试关闭calculator.exe应用程序时调用一个事件,但是在启动应用程序时事件本身会提高..有什么帮助?
var filePath="calc.exe";
var bat = exec(filePath);
bat.on('exit', function() {
alert("exit");
});
答案 0 :(得分:0)
尝试更换"退出"使用" SIGINT"代替:
bat.on('SIGINT', function() {
alert("exit");
});