Single Directory:
find . -path ./misc -prune -o -name '*.txt' -print
Multiple Directories:
find . -type d \( -path dir1 -o -path dir2 -o -path dir3 \) -prune -o -print
Comment feed for this post