How to find folder or file by name
Find a folder
find /dir/path/look/up -name "dir-name-here"
find / -name data
Find a file
find . -name credentials-backend.json
Last updated
Was this helpful?
Find a folder
find /dir/path/look/up -name "dir-name-here"
find / -name data
Find a file
find . -name credentials-backend.json
Last updated
Was this helpful?