Last active
January 28, 2016 23:13
-
-
Save simov/addfbb0af80ad3a63b8a to your computer and use it in GitHub Desktop.
Recursively read directory using async/await and bluebird
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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