deletebutme
v0.0.4
Published
Delete everything except for specific files (in this case, please keep `index_a.js` and `index_a.css`).
Readme
deletebutme
Delete everything except for specific files (in this case, please keep index_a.js and index_a.css).
Of course, you can also use --inverse 1 to only remove them instead.
npm install deletebutme -gThe folder needs to perfom the deletion
│ index_a.js
│ index_b.js
│ index_a.css
│ a.png
│ b.png
│ c.png
│ d.png// items_need_to_stay.txt
index_a.js
index_a.css~$ deletebutme delete --deleteDir /path_to_the_deletion_folder --filterFileDir /path_to_the_items_need_to_stay.txtResult
│
│ index_a.js
│ index_a.cssconst DEFAULT_OPTIONS = {
nofile: false, // check https://github.com/manidlou/node-klaw-sync for more info
nodir: true, // check https://github.com/manidlou/node-klaw-sync for more info
depthLimit: -1, // check https://github.com/manidlou/node-klaw-sync for more info
basename: false,
inverse: false,
deleteDir: '',
filterFileDir: '',
extGoes: '[]', // '[".js", ".css", ".html"]'
extStays: '[]', // '[".jpg", ".png", ".svg"]'
};~$ deletebutme delete --nofile 0 --nodir 0 --extGoes '[".js", ".css", ".html"]'