Open folder for a given path in Mac OS X

74

13

Let's say I have a path to a folder in a text document or in the clipboard, for example:

/Users/Joe/Documents/workspace/test

How can I quickly open this folder in Mac OS X? In Windows I could open the Run-dialog, paste the path into the input box and the folder would open.

Is there a similar way in Mac OS X?

Florian Fankhauser

Posted 2009-09-20T09:08:23.340

Reputation: 843

Answers

92

Yes, there are. If you are already in Finder you can use one of them:

  1. In the Go menu, choose Go to Folder… option
  2. Press + + G

If you want to do it from Dock - press and hold left mouse on Finder icon and choose Go to Folder….

Just paste in modal window your path and press Enter

It will throw an error if the folder does not exist, or the path points to a file. Note also that it opens in your current window, so if you want to Go in a new window you will have to open that window first.

beiju

Posted 2009-09-20T09:08:23.340

Reputation: 1 151

26

If you are working at the command line try

$ open <path>

with the bonus that it also opens files in the default application that is set for them.

dmckee --- ex-moderator kitten

Posted 2009-09-20T09:08:23.340

Reputation: 7 311

7

If it is a network path, go to finder and click CMD + K then type smb://servername/drive/file

Timmyloud

Posted 2009-09-20T09:08:23.340

Reputation: 71

2A bit late to comment, but the smb:// made all the difference! – jackJoe – 2013-07-15T16:21:12.047