The nested find command should be:
find ~/App/Classes/ -type f -name "*.m" -not -path "./Lib/excludethisdir/*"
i.e. add ./before your excluded path.
Or even better:
find ~/App/Classes/ -path "./Lib/excludethisdir/*" -prune -o -type f -name "*.m" -print
source
share