sugar-glob
v2.0.0
Published
Sugar for using glob to find files
Downloads
87
Readme
sugar-glob
Find files using glob with a little added sugar
Install
npm install sugar-glob
Usage
var scan = require('sugar-glob')
scan({
root: './my-folder' // relative to this file or absolute path
})
.file('**/*.html', function(file) {
console.log(file)
})
Outputs the following for each file matching the pattern:
{ name: 'abc/my-file.html',
dir: 'abc',
basename: 'my-file.html',
dirname: '/Users/will123195/my-folder/abc',
extname: '.html',
filename: '/Users/will123195/my-folder/abc/my-file.html' }