我只想知道路径是否存在。这是我的代码:
var path = require('path'); // exists path
答案 0 :(得分:8)
尝试:
var path = require('path');
if (path.existsSync("/the/path")) { // or fs.existsSync
// ...
}
或
fs.exists('/the/path', function (exists) {
util.debug(exists ? "it's there" : "no exists");
});