Get an array of recursive directory contents
npm install walk-sync-matcher
Return an array containing all recursive files and directories under a given
directory, similar to Unix find. Follows symlinks. Bare-bones, but
very fast.
Similar to wrench.readdirSyncRecursive,
but adds trailing slashes to directories.
Not to be confused with node-walk,
which has both an asynchronous and a synchronous API.
``bash`
npm install --save walk-sync
`js`
var walkSync = require('walk-sync');
var paths = walkSync('foo')
Given foo/one.txt and foo/subdir/two.txt, paths will be the following
array:
`js`
['one.txt', 'subdir/', 'subdir/two.txt']
Note that directories come before their contents, and have a trailing slash.
Symlinks are followed.
walkSync(baseDir) is a faster substitute for
`js``
glob.sync('**', {
cwd: baseDir,
dot: true,
mark: true,
strict: true
})