Show the full path in Finder, in the title bar and the path bar
· 5 min read
Finder knows where you are, it just does not say so by default. The path bar takes one menu item (View, Show Path Bar) and puts a clickable breadcrumb along the bottom of every window. Putting the whole path in the window title is a separate change that needs one line in Terminal, because Apple never gave it a checkbox.
Both are reversible in seconds, and neither touches a single file.
The path bar is one menu item
- Open any Finder window.
- Choose View, Show Path Bar. The shortcut is Option-Command-P.
- A strip appears along the bottom of the window showing every folder from the disk down to where you are.
That strip is not decoration. Double-click any folder in it to jump there. Drag a file onto any folder in it to move the file up the tree without opening a second window. Right-click a component for the usual folder menu, including Open in New Tab.
It earns its space most in search results. Search from a Finder window, click a result, and the path bar is the only thing on screen telling you whether the file you found is in Documents or buried somewhere in a Library folder you had forgotten existed.
While the View menu is open, Show Status Bar (Command-slash) is the one people turn on in the same minute: item count on the left, free space on the right.
The full path in the title bar
The path bar says where a window is looking. The title bar still shows only the folder’s name. To make the title show the whole path, open Terminal (Applications, Utilities) and run:
defaults write com.apple.finder _FXShowPosixPathInTitle -bool true
killall Finder
The second line restarts Finder so it reads the new value. The Desktop blinks and your windows come straight back. Titles then read as full paths, /Users/you/Documents/Invoices/2026 rather than 2026.
To put it back:
defaults delete com.apple.finder _FXShowPosixPathInTitle
killall Finder
Deleting the key is cleaner than writing false, because it removes your override entirely and lets Finder fall back to what it shipped with. What defaults write does covers why that distinction matters, and how to record the old value before you change anything.
Two things to expect. The title is now POSIX style, with slashes and the folder names as they exist on disk, so a folder macOS displays translated into your language can show its underlying English name instead. And a narrow window truncates a long path in the middle, which makes the setting less useful on a laptop screen than it sounds. Plenty of people turn it on, live with it for a week, and go back to the path bar alone.
Reading a path without changing any setting
If you only need the path occasionally, macOS will tell you as it is.
Command-click the window title. A menu drops down listing every enclosing folder up to the disk; choose one to open it. On Ventura and later that title icon only appears when you hover over the title. System Settings, Accessibility, Display has a switch to keep window title icons visible all the time if the hover irritates you.
Press Command-I on any file. The Get Info window has a Where line with the full location.
Use Go to Folder. Command-Shift-G, in Finder or inside any Open or Save dialog, gives you a field that autocompletes as you type a path. It is the quickest way to check whether a path someone sent you is real before you go looking for it.
Copying a path you can paste somewhere
- Select the file or folder in Finder.
- Open the Edit menu and hold Option. “Copy” changes to “Copy as Pathname”.
- Or skip the menu: Command-Option-C.
You get the full path as plain text, ready for Terminal, a script, a support ticket, or a reply to whoever asked where the file lives.
The other direction works too. Drag a file or folder from Finder onto a Terminal window and its path is typed in for you with spaces escaped correctly. That is faster than typing a path by hand and it removes the whole class of error where you spell one folder name slightly wrong and spend five minutes wondering why nothing exists.
Doing it without opening Terminal
Mainspring carries the title bar path as a power-up called “full path in Finder title”, sitting next to the Finder settings people tend to change in the same sitting: show hidden files, folders on top, a Quit command in the Finder menu. Each power-up snapshots the previous value before it changes anything, so turning one back off is a click rather than a command you have to look up again. It is a paid app for something two Terminal lines also do, so the honest case for it is the record and the one-click revert, not the setting.
If Terminal is already open, the two lines above are the entire job.
Which of these is worth keeping
- Path bar: keep it. One line at the bottom of the window, and “where am I” stops being a question.
- Status bar: keep it if free space matters to you.
- Full path in the title bar: try it. Genuinely useful if you work across several similar folder trees, clutter if you do not.
- Copy as Pathname: nothing to turn on, just worth remembering.
Keep folders at the top when Finder sorts by name is the other Finder default most people fix once and never think about again.
Questions
Does the path bar slow Finder down? No. It reads information Finder already has about the current window. The one place you will notice it is in a window showing thousands of search results, where the bar redraws each time you change selection, and even then the cost is not something you can perceive.
Why does the title bar path not match what the sidebar calls the folder? Because the title bar shows the path on disk and the sidebar shows display names. System folders are the common case: macOS presents some of them translated or renamed, while the underlying folder keeps its original name. Both are correct, they are just answering different questions.
Can I put a path control in the toolbar instead? Yes. Right-click the Finder toolbar, choose Customize Toolbar, and drag the Path item into place. Clicking it gives the same enclosing-folder menu as Command-clicking the title, without the title bar change and without the hover.
My iCloud Drive paths look strange. Is something wrong? No. Files in iCloud Drive live under a Library folder in your home directory, so their real path looks nothing like what the sidebar shows. That is how macOS has always stored them, and the path bar showing it is not a sign of a problem.