Ignore folders?
Closed this issue · 3 comments
garyritchie commented
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.
garyritchie commented
Alternate method:
find . -type f -exec detox -f .detoxrc -s lower {} \;
My .detoxrc
contains an additional ignore: filename "Thumbs.db"
dharple commented
Hello! I would also use find
to target only files. There's no way to specifically target directories or files with detox itself.
garyritchie commented
Sounds good, thanks Doug.