find {PATH} -name {FILENAME}
Search current directory for file with exact name:
find . -name name.pdf
Or by wildcard:
find . -name "*.js"