size-on-disk
v0.1.0
Published
Wrapper over the [du](http://en.wikipedia.org/wiki/Du_(Unix)) command to get a file/folder's size on disk.
Downloads
120
Readme
size-on-disk
Wrapper over the du command to get a file/folder's size on disk.
Usage
getSize(process.env.FOLDER || process.cwd(), function(err, bytes) {
if (err) { throw err; }
console.log(bytes + ' bytes');
console.log((bytes / 1024 / 1024).toFixed(2) + ' Mb');
});
License
MIT