How to find a folder on my server with a certain name?
This also should work
find folder_full_path -name exampledocs -type d
find / -xdev 2>/dev/null -name "exampledocs"
Note: This is from Debian, but it should work.
locate exampledocs | grep /exampledocs$