|
|
10 rokov pred | |
|---|---|---|
| .. | ||
| node_modules | 10 rokov pred | |
| index.js | 10 rokov pred | |
| package.json | 10 rokov pred | |
| readme.md | 10 rokov pred | |
Delete files/folders using globs
Pretty much rimraf with support for multiple files and globbing.
It also protects you against deleting the current working directory and above.
$ npm install --save del
var del = require('del');
del(['tmp/*.js', '!tmp/unicorn.js'], function (err, deletedFiles) {
console.log('Files deleted:', deletedFiles.join(', '));
});
The async method gets an array of deleted files as the second argument in the callback, while the sync method returns the array.
Required
Type: string, array
See supported minimatch patterns.
Type: object
See the node-glob options.
Type: boolean
Default: false
Allow deleting the current working directory and files/folders outside it.
See trash.
MIT © Sindre Sorhus