Find files in source path and copy them to a destination. The command will overwrite the files in the destination folder without asking.
yes | find /path/to/source -type f -iname '*.pdf' -exec cp -irfv '{}' /path/to/destination/ \;