How to find a folder through SSH

RobAPI

New member
Hey
Could someone help me find a folder when using SSH please?
I know how to find a file but not sure how I can find a folder

Thank you
 
One think you can do is the following. To find a filename call foo do

find / -type f -name foo

For a directory you can do

find / -type d -name foo

HTH

Rus
 
Back
Top