I look for a file in finder, finder finds it. But, I'd like to find it's full path. How do I do that?
-
1Yeah, it shouldn't be this complicated. Apple loves to hide things from us so that we are more dependent on their gadgets. For another example, see how difficult it is to actually see someone's phone number when you or they call. – JL Peyret Jul 01 '22 at 16:05
9 Answers
⌥ ⌘ c while file is highlighted to copy its path to the macOS clipboard.
(option-command-c)
Easier than all of these by a long shot, IMO.

- 1,717
-
that's a nice extra to know, but you forgot to mention that this only copies it to the macos clipboard – 40detectives Dec 07 '21 at 09:24
You can also enter the following in Terminal:
defaults write com.apple.finder _FXShowPosixPathInTitle -bool YES
then
killall Finder
This will display the full path in the titlebar.
to turn it back off change the -bool YES
to NO
Or if you want to copy the text of the path you can drag the file into Terminal.

- 2,557
-
1Thanks. This is exactly the kind of thing that should be an option in the "Show View Options" dialog or finder preferences. – John Oct 21 '21 at 15:41
-
4
-
This is so ridiculous... Are you self aware ? "Apple, different to be different." – Pogrindis Feb 11 '24 at 02:32
There are a few ways:
Right-click the folder name in the top of the window
In the Finder choose "View > Show Path Bar"
Use Go2Shell to open a terminal window at that location

- 5,068
- 1
- 17
- 15
-
-
2The menu bar I am referring to is at the top of the screen. It begins with the Apple icon, then Finder, File, Edit, View, Go, Window, and Help. If that menu bar is not visible you have much larger problems. – Dave Nelson Jul 19 '13 at 21:06
-
1
-
1
Command-C on the file to copy, and Command-V on the command line in Terminal. Or drag the file to the Terminal window

- 4,142
-
I use drag all the time, didn't know pasting actually pasted the path in Terminal, thanks! – v01pe Sep 12 '20 at 08:53
-
In Finder...
- Select a file
- Choose "View > Show Path Bar"
- Right-click the Path Bar file name (or file icon)
- Select "Copy as Pathname"
- Paste the Pathname where you desire

- 191
-
just want to add that at least in recent versions of macOS (tried in Big Sur >11.6) there is a shortcut for this and is the nicest way to get the path: ⌥ ⌘ P – 40detectives Dec 07 '21 at 09:27
You can right click on it and select "get info" and it should be written in the window that will pop the full path of the folder.

- 385
Install the FinderPath app
https://bahoom.com/finderpath/
It shows the full address when you click the title in Finder
Works just like Windows
Still works on MacOS 13.1

- 121
Right click the file and press info. Then you will get the file path infront of where.

- 101
-
We are looking for answers which stand for their own and don't send people off-site for essential details. Also, did you read the other answers, especially https://apple.stackexchange.com/a/96742/9058? – nohillside Oct 08 '20 at 13:19
On Ventura 14, there's a menu option under View (Opt+Ctrl+P) and then you see the entire path at the bottom of the window. Combine that with Cmd+Shift+. to see hidden files and you're all set. These settings persist after restart.
Note that the option under View does not appear (at least on my setup) unless you've first opened a Finder window.

- 2,274

- 101