var path = require('path');
var indexPath=path.resolve(__dirname, '..');//__dirname为启动路径;
indexPath=indexPath+'\\risingScan\\bin\\filemon.exe'; //本地文件;
indexPath=indexPath.replace(/\\/g,"\\\\");
var exec = require('child_process').exec;
var execFile = require('child_process').exec;
var childq1 = exec(indexPath, function(error, stderr) {
if(error) {
console.log(error)
return;
}
console.log(" ...................");
});
}