Macos – How to find a folder on Mac OS X 10.5

macmacossearch

I'm on Mac OS X 10.5 (Leopard). What's the best way to find a folder for which I'm not sure of the full name?

For example, I know the folder name I want is like:

  • "farm-animal-type"

But the full name may be something like:

  • "farm-animal-type-horse"

On Windows, I would just use the find tool through Windows Explorer.

Best Answer

If you take interest in the command line:

find / -type d -name "*farm-animal-type*"

you can change the starting area from / to whatever you want if you have a good idea of where the folder is generally located. Spotlight will be much snappier as the folders are indexed though.