dharple/detox

Ignore folders?

Closed this issue · 3 comments

Wish I found detox a long time ago!

When using lower is it possible to adjust so it does not rename folders? I like to keep folder names in UPPER_CASE while files are lower_case.

Alternate method:

find . -type f -exec detox -f .detoxrc -s lower {} \;

My .detoxrc contains an additional ignore: filename "Thumbs.db"

Hello! I would also use find to target only files. There's no way to specifically target directories or files with detox itself.

Sounds good, thanks Doug.