Recursively chmod file or directories

Recursive chmod only files within this folder:

 find . -type f -exec chmod 0600 {} \;

Recursive chmod only folders within this folder:

find . -type d -exec chmod 0755 {} \;