directory-scan
v1.0.7
Published
return an array which contains all folders and subfolers of a provided directory
Downloads
11
Readme
What is this?
This package will take a directory and scan recursively. The result is an array of child directories
Example: say your folder structure is like this
projet root
|app
|component
|action
|reducer
|css
|image
package.json
directory-scan
will get you something like below
[
'app',
'app/component',
'app/component/action',
'app/component/reducer',
'css',
'image'
]
Installation
npm i --save-dev directory-scan
Usage
Basic
import dirScan from 'directory-scan'
dirScan.get('./')
//output
[
'app',
'app/component',
'app/component/action',
'app/component/reducer',
'css',
'image'
]
./
is to get all folders and sub folders of folders in root directory.
By default this package will automatically exclude node_modules
folder and .git
folder
Exclude folder from scan
import dirScan from 'directory-scan'
dirScan.get('./', 'css')
//output
[
'app',
'app/component',
'app/component/action',
'app/component/reducer',
'image'
]
This will scan every folders in your root except css
folder
import dirScan from 'directory-scan'
dirScan.get('./', ['css','image'])
//output
[
'app',
'app/component',
'app/component/action',
'app/component/reducer'
]
This will scan every folders in your root except css
and image
folder
Test
npm test