我開始學習node.js.我通過閱讀「The Node Beginner」一書開始,給出的代碼似乎是爲了在unix中運行而編寫的,我不知道如何爲下面給出的部分代碼編寫windows的等效代碼。對於unix命令'ls -lah',等效的Windows命令提示符是什麼?
var exec=require("child_process").exec;
function start(){
console.log("Request handler 'start' was called");
var content="empty";
exec("ls -lah", function(error, stdout, stderr){
content= stdout;
});
return content;
/*
function sleep(milliSeconds){
var startTime=new Date().getTime();
while(new Date().getTime()< startTime+milliSeconds);
}
sleep(10000);
return "Hello Start"; */
}
如果你曾經閱讀過這本書,或者對如何使這段代碼有用有任何想法,我將非常感激。
是'dir/w'你在找什麼? – Joe
我會盡力...它可能是。 – L4reds
@Joe,當然是。非常感謝你。像魅力一樣工作:D – L4reds