Last active
August 29, 2015 14:10
-
-
Save z0mt3c/789b033d0666abeea3de to your computer and use it in GitHub Desktop.
fs-tree.js
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
var fs = require('fs'); | |
var path = require('path'); | |
var async = require('async'); | |
module.exports = function(rootPath, next) { | |
rootPath = path.normalize(rootPath); | |
var files = []; | |
var directories = []; | |
var totalSize = 0; | |
var internals = { | |
createInfo: function createInfo(currentPath, parent, next) { | |
fs.lstat(currentPath, function(error, stats) { | |
if (error) { | |
return next(error); | |
} | |
next(null, { | |
name: path.basename(currentPath), | |
path: currentPath, | |
size: stats.size, | |
parent: parent, | |
directory: stats.isDirectory(), | |
mtime: stats.mtime, | |
ctime: stats.ctime, | |
atime: stats.atime | |
}); | |
}); | |
}, | |
createChildren: function createChildren(info, next) { | |
var indexChildren = function(error, children) { | |
if (error) { | |
return next(error); | |
} | |
async.map(children, function(child, next) { | |
internals.createNode(path.join(info.path, child), info, next); | |
}, function(error, mapped) { | |
if (error) { | |
return next(error); | |
} | |
info.children = mapped; | |
next(null, info); | |
}); | |
}; | |
fs.readdir(info.path, indexChildren); | |
}, | |
createNode: function createNode(path, parent, next) { | |
internals.createInfo(path, parent, function(error, info) { | |
if (error) { | |
return next(error); | |
} | |
if (info.directory) { | |
directories.push(info); | |
return internals.createChildren(info, next); | |
} else { | |
totalSize += info.size; | |
files.push(info); | |
return next(null, info); | |
} | |
}); | |
} | |
}; | |
internals.createNode(rootPath, null, function(error, tree) { | |
next(error, { | |
directories: directories, | |
files: files, | |
tree: tree, | |
totalSize: totalSize | |
}); | |
}); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment