node.js fs.readdir recursive directory search

前端 未结 30 1892
醉酒成梦
醉酒成梦 2020-11-22 15:55

Any ideas on an async directory search using fs.readdir? I realise that we could introduce recursion and call the read directory function with the next directory to read, bu

30条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-11-22 16:08

    Check out the final-fs library. It provides a readdirRecursive function:

    ffs.readdirRecursive(dirPath, true, 'my/initial/path')
        .then(function (files) {
            // in the `files` variable you've got all the files
        })
        .otherwise(function (err) {
            // something went wrong
        });
    

提交回复
热议问题