node雜談

pws019發表於2018-05-18
process.cwd()
//獲取當前的工作目錄


var str = fs.realpathSync('.');
//根據引數獲得目錄的絕對路徑
//其中起始目錄為當前工作目錄
console.log(str);


複製程式碼