MainspringGuides › Full path in Finder title bar
macOS Guide

Show the full path in the Finder title bar

Updated 2026 · 4 min read

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:

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):

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.

Do it in one click

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.