nodejs 执行.exe文件
(执行 jar 包也是同理)function executor() { var exec = require('child_process').exec, child; // exec_path 写入需要执行的命令 var exec_path = "a.exe"; // 执行函数 child = exec(exec_path, function (error, stdout, stderr) { if(error) return con
原创
2021-10-11 15:57:28 ·
3736 阅读 ·
5 评论