NodeJS fs.statSync(...)。isDirectory()为文件返回true

时间:2017-03-02 08:47:17

标签: node.js path fs

尝试使用以下答案中的代码: https://stackoverflow.com/a/24594123/3951987

对于我来说,为目录内的文件返回true。

为了提供更多上下文,这里有一些基本代码来描述我的实现:

getDirs = (a_path) => {
    return fs.readdirSync(a_path)
        .filter(file => fs.statSync(path.join(a_path, file)).isDirectory());
}

someCode = () => {
    let some_path = path.resolve(process.cwd(), "example");
    console.log(getDirs(some_path));
}

在我的项目中,我有:

example/
- test/
- manifest.json
index.js

上面描述的getDirs函数仍然将manifest.json作为目录返回,即使应用了给定的过滤器也是如此。

其他人有这个吗?有什么想法吗?

其他信息

我已将getDirs功能修改为以下内容:

getDirs = (a_path) => {
    console.log("getDirs a_path = "+a_path);
    let dirs = fs.readdirSync(a_path);

    for(let x = 0; x<dirs.length; x++){
        let a_dir = path.resolve(a_path, dirs[x]);
        console.log(dirs[x]);
        console.log(fs.statSync(a_path, a_dir).isDirectory());
    }
    return dirs;
};

这个输出是:

getDirs a_path = <pathtoproject>/example
test
true
manifest.json
true

1 个答案:

答案 0 :(得分:4)

变化:

console.log(fs.statSync(a_path, a_dir).isDirectory());

为:

console.log(fs.statSync(a_dir).isDirectory());

否则说明a_path,而不是a_dir

fs.statSync需要一个参数 - 请参阅文档: