Quote:
Originally Posted by Fenrir007
Bonus question unrelated to Calibre - is there an easy way (with some software or whatnot) of purging a tree of folders of all .docs, .htmls and .txt? Subfolders included.
|
As BetterRed said.
On linux I would use something like this terminal command (from the root of the target folder tree):
Code:
find . -name "*.bak" -type f -delete
To remove multiple filetypes:
Code:
find . -regex ".*\.\(txt\|doc\|html\)$" -type f -delete