nodejs执行cmd、shell命令

var exec = require('child_process').exec;
function execute(cmd){
	
    exec(cmd, function(error, stdout, stderr) {
        if(error){
            console.error(error);
        }
        else{
            console.log("success");
        }
    });
	
}
execute('del .\\aaa\\aaa.txt');
execute('copy .\\aaaa\\aaa.txt .\\aaa');

 

posted on 2019-07-10 14:57  小石头小祖宗  阅读(19)  评论(0编辑  收藏  举报  来源

导航