检查nodejs路径是否存在

时间:2012-10-14 12:35:25

标签: javascript node.js

我只想知道路径是否存在。这是我的代码:

var path = require('path'); // exists path

1 个答案:

答案 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");
});