Show the full folder path in Finder's title bar
By default a Finder window's title bar shows only the current folder's name — "Projects" on its own tells you nothing about which Projects folder you're actually looking at. One Terminal command replaces that bare name with the full path, so the title reads /Users/you/Documents/Work/Projects at a glance. There's no checkbox for it anywhere in Finder's settings; the behaviour lives in a hidden preference, and it flips back just as easily.
Turn on the full path
Open Terminal (Applications → Utilities, or type "Terminal" into Spotlight) and paste this in:
# Show the full POSIX path in every Finder window title bar
defaults write com.apple.finder _FXShowPosixPathInTitle -bool true
killall Finder
Finder relaunches for a second and comes back with paths in every title. If you ever want the plain folder name again, run the opposite value:
# Back to just the folder name
defaults write com.apple.finder _FXShowPosixPathInTitle -bool false
killall Finder
Nothing else changes — no files move, no other Finder behaviour shifts. The key only exists as a Terminal preference, which is why you won't find a matching toggle under Finder → Settings. It behaves identically on macOS 13 Ventura, 14 Sonoma, and 15 Sequoia.
What the title bar shows now
The window title becomes the folder's absolute path, written the way the system stores it. Your home folder appears as /Users/yourname rather than the friendly house-and-name label, the Desktop reads /Users/yourname/Desktop, and a mounted drive shows under /Volumes. That last one is the quiet win: an external disk and an identically named folder on your internal drive stop looking the same the moment their full paths are on screen.
Because the path is the real POSIX form — forward slashes, no shortening — it's exactly the text you'd type in Terminal or paste into a script. The title updates live as you move between folders, so it's always describing the window you're in, not the one you started in.
The full path also follows the window everywhere macOS shows a window title: the Window menu's list of open Finder windows, the labels under thumbnails in Mission Control, and the tooltip when you hover a minimised window in the Dock. So the benefit isn't confined to the title bar you're staring at — it makes every place that names a Finder window more useful at once.
Finder keeps this off by default because most people navigate visually — they recognise a folder by its icons and contents, not its path — and a bare name keeps titles short. The moment your work involves exact locations, though, that short title becomes a liability, which is why developers, IT admins, and anyone writing instructions tend to switch it on and leave it on.
Prefer not to use Terminal? Use the path bar
Finder has a built-in feature that shows the same information without touching a preference file: the path bar, a slim breadcrumb strip along the bottom of every window.
- Open any Finder window.
- Choose View → Show Path Bar, or press Option+Cmd+P.
The strip lists every folder from the drive down to where you are. Unlike the title bar, it's interactive: double-click any segment to jump straight to that folder, or drag a file onto a segment to move it there. The title-bar tweak and the path bar work well together — the title gives you a copy-ready string up top, the path bar gives you clickable navigation down below. Turn the path bar off again with the same menu item or shortcut.
One more built-in worth knowing: Cmd-click (or right-click) the folder name in the very center of the title bar and macOS drops down the entire folder hierarchy as a menu, so you can leap up several levels in one move — no preference required.
This tweak has no System Settings switch — it's a Terminal-only preference. Mainspring turns _FXShowPosixPathInTitle and 90+ other hidden macOS settings into labelled, one-click toggles you can flip on and reverse without ever opening a command line.
Signed & notarized by Apple · 1-day free trial · $29 once
Grabbing the path once it's visible
Seeing the path is half the job; copying it is the other half. When you need the string on your clipboard, right-click any file or folder, hold Option, and the menu's Copy item becomes Copy as Pathname. For more routes, see how to copy a file path on Mac.