Guides

How to Show the File Path in Mac Finder (Four Ways, and What Each One Shows)

Updated September 4, 2026

To show the file path in Finder, press ⌥⌘P — or choose View → Show Path Bar. A clickable chain from the disk down to the folder you are in appears along the bottom edge of the window. Finder hides it by default, and it stays on for every window once you turn it on.

That is the quick answer. There are four different ways to see a path in Finder, they show different things, and only one of them lets you type a path — which is what most people are actually after.

Show the path at the bottom of the window

  1. Open any Finder window — the View menu is greyed out without one, because the setting has nowhere to apply.
  2. Choose View → Show Path Bar, or press ⌥⌘P.
  3. The trail appears at the bottom of the window.

It is one setting for all of Finder, not a per-window one. Switch it on once and every window you open from then on has it — which is what people expect from a preference and, oddly, not how Finder treats icon size or sort order. The menu item flips to Hide Path Bar, and the same ⌥⌘P toggles it either way.

From Terminal, handy inside a setup script for a new Mac:

defaults write com.apple.finder ShowPathbar -bool true && killall Finder

killall Finder restarts Finder so it re-reads the preference — that step is not needed when you use the menu. Set it back with -bool false.

What it is good for

  • Knowing where you are. The full chain from the disk down to the current folder, at a glance — which matters most in a window you opened from somewhere else and cannot place.
  • Jumping. Double-click any segment to open that folder. A single click only selects it, which is the first thing everyone gets wrong.
  • Context for search results. Select a hit in a search window and the trail extends to show where that file actually lives. The results list itself never tells you, and this is the fastest way to find out.
  • Dropping files. Drag a selection onto a segment to move it into that folder without navigating there first. Hold to copy instead. Most people never discover this, and it turns the bar from decoration into a tool.

The three things it can’t do

You can’t type in it. It is a display with click targets, not an input — there is no way to click into the trail and enter a path. For that, Finder gives you ⇧⌘G (Go to Folder), a modal dialog that appears, takes a path, and disappears.

It can’t hand you the path as text. Select the file and press ⌥⌘C instead, or right-click it and hold so Copy turns into Copy … as Pathname. If you want a path on screen at all times rather than on demand, Finder can show one in the window title — the address bar guide has that Terminal switch.

It can’t move. The bar is fixed to the bottom edge of the window. If you came to the Mac from Windows, the place you keep glancing at is the top of the window, and it stays empty no matter what you turn on.

The four ways to see a path in Finder

Four different things get called “the path thing in Finder”, and they do different jobs:

ShortcutShowsAccepts typing
Path Bar⌥⌘PClickable breadcrumbs, bottom of the windowNo
Status bar⌘/Item count and free disk spaceNo
Title-bar menu-click the titleThe folder hierarchy as a drop-downNo
Go to Folder⇧⌘GA dialog that takes a POSIX pathYes, then it closes

The Path Bar and the status bar are separate strips and can be shown at the same time. The title-bar menu needs nothing turned on — -click (or right-click) the folder name at the top of any window and the whole hierarchy drops down, which is the quickest way up three levels without hammering ⌘↑.

Enter a path: ⇧⌘G

The Path Bar shows a path; it never takes one. To go to a path you type, press ⇧⌘GGo to Folder — in any Finder window or on the desktop. A dialog opens, takes a POSIX path such as /Users/you/Documents or ~/Downloads, completes folder names as you type, and closes again once it has taken you there.

It is a dialog rather than a bar, so it answers “take me here” and then disappears. Nothing in Finder keeps a typable path on screen.

If you want it at the top, and typable

The Path Bar answers “where am I”. An address bar answers that and “take me here” — one strip that shows clickable breadcrumbs and accepts a typed or pasted path, at the top of the window where Explorer puts it. Finder has no such thing, and no combination of its settings adds one.

That is a third-party file manager feature. ComfortFiles keeps a real address bar at the top of every window: click a breadcrumb to jump, or click the bar and type or paste any path — see how the address bar works.

Frequently asked questions

How do I show the file path in Finder on a Mac?

Press ⌥⌘P, or choose View → Show Path Bar. The path appears as a clickable trail along the bottom edge of the window, from the disk down to the folder you are in. It stays on for every Finder window until you turn it off.

How do I show the full path in the title bar?

One Terminal command: defaults write com.apple.finder _FXShowPosixPathInTitle -bool true && killall Finder. The window title then reads the whole POSIX path instead of just the folder name. Set it back to false to undo it.

How do I show the Path Bar in Finder?

Open a Finder window and choose View → Show Path Bar, or press ⌥⌘P. A breadcrumb trail appears along the bottom edge of the window. The menu item then reads "Hide Path Bar", which turns it back off.

What is the keyboard shortcut for the Path Bar?

⌥⌘P (Option-Command-P) toggles it on and off, with a Finder window frontmost.

Why is Show Path Bar greyed out?

Finder's View menu is disabled when no Finder window is open — the desktop counts as Finder being active, but there is no window for the setting to apply to. Open any window and the item becomes available.

Do I have to turn the Path Bar on in every window?

No. Unlike icon size or sort order, the Path Bar is a single setting for all of Finder — switch it on once and every window, including new ones, has it.

Can I type a path into the Path Bar?

No. The Path Bar is a display with click targets, not an input. To type or paste a path, use ⇧⌘G (Go to Folder) instead, or a file manager with a real address bar.

What's the difference between the Path Bar and the status bar?

They are separate strips at the bottom of the window and can be shown together. The Path Bar (⌥⌘P) shows where you are; the status bar (⌘/) shows the item count and free disk space.

Can I drag files onto the Path Bar?

Yes, and it is the most useful thing about it. Drag any selection onto a segment of the trail to move it into that folder without navigating there first. Hold while you drop to copy instead of move.

Can I move the Path Bar to the top of the window?

Not in Finder — it is fixed to the bottom edge, and no setting or Terminal command moves it. A file manager with a real address bar puts the trail at the top, where anyone coming from Windows keeps looking for it.

Is there a Terminal command to show the Path Bar?

Yes: defaults write com.apple.finder ShowPathbar -bool true && killall Finder. It writes the same preference the menu item does; killall Finder makes Finder re-read it.