Skip to content

Instantly share code, notes, and snippets.

@simov
Last active January 28, 2016 23:13
Show Gist options
  • Save simov/addfbb0af80ad3a63b8a to your computer and use it in GitHub Desktop.
Save simov/addfbb0af80ad3a63b8a to your computer and use it in GitHub Desktop.
Recursively read directory using async/await and bluebird
let fs = require('fs')
, path = require('path')
, bluebird = require('bluebird')
, readdir = bluebird.promisify(fs.readdir)
, stat = bluebird.promisify(fs.stat)
let recursive = async (root) => {
let dirs = [], files = []
dirs.push(root)
let readdirr = async (root) => {
let items = await readdir(root)
for (let item of items) {
let fpath = path.join(root, item)
, stats = await stat(fpath)
if (stats.isDirectory()) {
dirs.push(fpath)
await readdirr(fpath)
} else {
files.push(fpath)
}
}
return {dirs, files}
}
return readdirr(root)
.then((result) => result)
.catch((err) => {throw err})
}
// run
let root = '/absolute/path/to/some/dir/you/want/to/read'
recursive(root)
.then((result) => console.log(result))
.catch((err) => console.log(err))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment