recursively finds files by filter options from a start directory onwards and deletes these. useful if you want to clean up a directory in your node.js app.
I want to remove all folders and their content within TEMP that start with "scoped".
var result = findRemoveSync(process.env.TMP, { dir: "scoped_dir*" })
doesn't work
I want to remove all folders and their content within TEMP that start with "scoped". var result = findRemoveSync(process.env.TMP, { dir: "scoped_dir*" }) doesn't work