Show the full path in the Finder title bar
By default, the Finder title bar shows only the name of the current folder — "Projects", "Downloads", "src". If you work with deep folder structures or frequently jump between directories with similar names, that single folder name doesn't tell you much. One Terminal command makes Finder show the complete path, like /Users/yourname/Documents/Projects, right in the title bar.
Title bar vs. path bar — what's the difference?
Finder has two separate ways to show your location:
- Title bar — the strip at the very top of the window, where the window name appears. By default it just shows the folder name. With this setting enabled, it shows the full POSIX path.
- Path bar — an optional strip at the bottom of the window (below the file list) that shows breadcrumb-style navigation. You enable it separately via View › Show Path Bar or ⌥⌘P.
Both are useful, and they work independently — you can have either, both, or neither. The title bar path is more compact (it's just text in the existing title area). The path bar is more interactive and visible at the bottom of the window.
Enable the full path in the title bar
There's no GUI toggle for this one — it lives in a defaults key. Open Terminal and run:
# Show full POSIX path in the Finder title bar
defaults write com.apple.finder _FXShowPosixPathInTitle -bool true
# Restart Finder to apply
killall Finder
After Finder relaunches, the title bar of every window shows the full path — something like /Users/yourname/Documents/Projects/myapp/src. The deeper you navigate, the longer the path gets. On deep paths, macOS truncates from the left and shows an ellipsis to keep it within the window width.
Navigating with the title bar
The title bar path isn't just decorative — you can interact with it using the proxy icon (the small folder icon to the left of the path text):
- Hold ⌘ and click the proxy icon — a dropdown appears showing every folder in the path from the current location up to the root. Click any folder in the list to jump directly to it. This also works without the full path enabled — it's a built-in macOS feature for any Finder window.
- Drag the proxy icon — drag it to move or copy the current folder to another location, or drag it into a Terminal window to paste the full path.
- Option-drag the proxy icon — creates a copy of the folder at the drop destination.
The ⌘-click trick is particularly handy: even if the path text is truncated in the title bar, holding ⌘ and clicking always shows the full hierarchy.
Mainspring's Show full path in title bar toggle enables this setting instantly — no Terminal required. You can flip it back off just as easily if you decide the folder name alone is enough.
Try Mainspring free →Signed & notarized by Apple · 1-day free trial · $29 once
How to undo it
To go back to showing just the folder name in the title bar:
defaults write com.apple.finder _FXShowPosixPathInTitle -bool false
killall Finder
When this is most useful
Developers navigating between multiple projects with similarly named subdirectories (two repos both have a src/components folder, for example) benefit most from seeing the full path at a glance rather than just "components".
Writers and researchers working with files spread across multiple projects often lose track of which version of a "Notes" or "Drafts" folder they're in. The full path eliminates the ambiguity.
Screenshots and screen recordings: if you share Finder windows with colleagues or post screenshots online, showing the full path makes it clear exactly where a file lives without anyone having to ask.
Combine it with the path bar
For the most complete picture of where you are, enable both the title bar path and the path bar at the bottom of the window. Press ⌥⌘P to toggle the path bar, or go to View › Show Path Bar. The path bar at the bottom is clickable — you can click any breadcrumb segment to navigate to that folder directly. Together, the two give you context at both edges of the window.