file-count
v1.0.1
Published
Get the number of files in the given directory
Downloads
4
Readme
file-count
Get the number of files in the given directory
Install
CLI
npm install file-count -g
$ file-count .
API
npm install file-count --save
var fileCount = require('file-count');
fileCount(process.cwd(), function (err, count) {
console.log(count);
});