我试过这种方式..
var exec = require('child_process').exec;
var cmd = 'executable.exe';
var path = 'c:\\path';
var child = exec(
cmd, {
cwd: path
},
function(error, stdout, stderr) {
if (error === null) {
console.log('success');
} else {
console.log('error');
}
}
);
但仍然收到错误Error: spawn UNKNOWN
。知道我为什么会收到这个错误吗?