88

It seems that by default there is no way to enter a whole path in the Finder, so instead one should traverse through all the tree to get somewhere deep in the filesystem. Is there anyway to overcome this problem? If there is no GUI for it in the Finder maybe launching it from the command line with the path? Something like:

finder /Library/Frameworks/Python.framework/Versions/

3 Answers 3

118

Finder has a menu item found under Go ("Go to Folder…") where you can type a full path.

The command+shift+G keyboard shortcut makes it handy to summon. This short cut works in the file open and save dialog as well.

Finder Go > Go to Folder...

Tab file path completion works in this window as does pasting words or a path for a file or network share.

The open command works to do this from the command line.

open /Library/Frameworks/Python.framework/Versions/
7
  • 18
    Is there a way to click on the path in finder and insert the path string right there, as in Windows Explorer?
    – Meglio
    Commented Apr 9, 2016 at 9:31
  • 1
    no @Meglio you have to paste in the go to dialog that pops up.
    – bmike
    Commented Apr 9, 2016 at 14:48
  • 2
    Brilliant! You can summon it in the GUI of other applications when you want to "Open File".. Too bad this is a quick key and not built into the Finder. Fortunately G for go is easy to remember so maybe we are better off just remembering that.
    – user391339
    Commented Jan 31, 2019 at 7:36
  • 8
    Making it impossible to paste the path is extremely low usability for Power Users. And so much worse than Windows!
    – sophros
    Commented Mar 6, 2020 at 6:31
  • Shift command g then command v pastes the path @sophros
    – bmike
    Commented Sep 18, 2022 at 16:48
20

The command line version would be:

open -R /Library/Frameworks/Python.framework/Versions/

or just:

open /Library/Frameworks/Python.framework/Versions/

depending on you want to go inside the folder or reveal the folder in finder.

0
8

Use Spotlight Search (which can be opened quickly with Command + Space or sometimes a dedicated key like 🔍). It has been around since Mac OSX 10.4 Tiger.

Just type or paste the full path into the Spotlight Search box. Even a partial folder and/or file name can also reveal the destination, albeit there might be a long list of matches to weed through.

1
  • Going to path using Spotlight is also cool! Thank you!
    – Player1
    Commented Mar 2, 2021 at 16:52

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .