list-files-in-dir
v0.1.5
Published
Lists recursively files in the specified directory.
Downloads
626
Readme
list-files-in-dir
Lists recursively files in the specified directory.
Installation
npm install list-files-in-dir --save
Usage
import {listFiles} from 'list-files-in-dir';
// As second parameter you can optionally pass the extension to filter the files
listFiles('example/path')
.then(files => {
// do what ever you want with the file paths
});
Additionally listFilesSync
is available.
Tests
npm install
npm test
Dependencies
- @types/node: TypeScript definitions for Node.js
Dev Dependencies
- rimraf: A deep deletion module for node (like
rm -rf
) - tslint: An extensible static analysis linter for the TypeScript language
- typescript: TypeScript is a language for application scale JavaScript development
License
MIT