0
我用fs.stat檢查一個文件夾是否存在:檢查是否存在多個文件夾?
fs.stat('path-to-my-folder', function(err, stat) {
if(err) {
console.log('does not exist');
}
else{
console.log('does exist');
}
});
有沒有一種方法來檢查的多條路徑只使用一個方法是否存在?
更短,也許更乾淨:'paths.map(path => new Promise(...))' –
您是否暗示只使用ES6格式?我通常會這樣做,但是我保持原來問題的格式。在ES6格式中看起來更乾淨。 – samanime
是的。 BTW'函數(err,stat)=> {'是無效的語法。 –