del
Last updated
Was this helpful?
Last updated
Was this helpful?
Delete files and folders using
Similar to , but with a Promise API and support for multiple files and globbing. It also protects you against deleting the current working directory and above.
🐶
Support this project and improve your JavaScript skills with this great by Wes Bos. Try his free for a taste of what to expect. You might also like his and course.
The glob pattern **
matches all children and the parent.
So this won't work:
You have to explicitly ignore the parent directories too:
Suggestions on how to improve this welcome!
Returns a promise for an array of deleted paths.
Returns an array of deleted paths.
Type: string
string[]
Type: Object
force
Type: boolean
Default: false
Allow deleting the current working directory and outside.
dryRun
Type: boolean
Default: false
See what would be deleted.
concurrency
Type: number
Default: Infinity
Minimum: 1
Concurrency limit.
See supported minimatch .
See the .
See for a CLI for this module and for a safe version that is suitable for running by hand.
- Make a directory and its parents if needed
- User-friendly glob matching
MIT ©