When navigating deeply nested folder structures on your Mac, it is surprisingly easy to lose track of exactly where you are in the file system hierarchy. Unlike Windows File Explorer, which prominently displays the full directory path in an address bar at the top of every window, the macOS Finder prioritises a clean, minimalist aesthetic and hides this information by default.
For power users, developers, designers, and anyone managing complex project structures, seeing the exact file path is essential. Fortunately, macOS provides multiple ways to display your current location, from a permanent breadcrumb trail to quick keyboard shortcuts for copying full paths.
How to Enable the Path Bar (Permanent Display)
The easiest way to always see your current location is to enable the Path Bar, which adds a permanent breadcrumb-style trail to the bottom of every Finder window.
- Click the Finder icon (the smiling blue face) in your Dock to open a new Finder window.
- In the menu bar at the top of your screen, click View.
- Click Show Path Bar.
A new strip will instantly appear at the bottom of the Finder window, displaying a sequence of folder icons starting from your root drive (typically “Macintosh HD”) all the way down to the folder you are currently viewing.
Keyboard shortcut: You can toggle the Path Bar on and off at any time by pressing ⌘ + Option + P (Command + Option + P).
Interacting with the Path Bar
The Path Bar is not just a passive display — it is fully interactive:
- Navigate by double-clicking: Double-click any folder name in the Path Bar to instantly jump to that directory. This is significantly faster than clicking the back button multiple times.
- Drag and drop: You can drag files from the Finder window onto a folder icon in the Path Bar to move them to that location.
- View the full UNIX path: If you prefer seeing the traditional UNIX-style path (such as
/Users/username/Documents/Project) instead of folder icons, open Terminal and run:defaults write com.apple.finder _FXShowPosixPathInTitle -bool true
Then restart Finder by holding Option, right-clicking the Finder icon in the Dock, and selecting Relaunch. The full UNIX path will now appear in the title bar of every Finder window.
How to Temporarily View the File Path (Title Bar Trick)
If you prefer keeping your Finder windows as clean as possible and only need to see the file path occasionally, there is a built-in trick hidden in the window title:
- Open a Finder window and navigate to any folder.
- Locate the folder name displayed at the top-centre of the Finder window (the title bar).
- Hold down the ⌘ Command key on your keyboard.
- Whilst holding the key, click once on the folder’s title.
A dropdown menu will appear showing the complete hierarchical path of your current folder, from the root drive down to your current location. You can click on any folder in this vertical list to navigate directly to it.
This method requires no configuration changes and works in every version of macOS.
How to Show the Full Path in the Finder Title Bar
If you want the traditional UNIX-style path permanently displayed in the title bar of every Finder window (replacing just the folder name):
- Open Terminal (search for it in Spotlight or find it in Applications > Utilities).
- Paste the following command and press Enter:
defaults write com.apple.finder _FXShowPosixPathInTitle -bool true - Restart Finder by either:
- Holding Option, right-clicking the Finder icon in the Dock, and selecting Relaunch, or
- Typing
killall Finderin Terminal and pressing Enter.
Every Finder window will now display the full UNIX path (such as /Users/username/Documents/Project/Assets) in its title bar instead of just the folder name.
To revert this change, run the same command with false instead of true:
defaults write com.apple.finder _FXShowPosixPathInTitle -bool false
Then restart Finder again.
How to Copy a File or Folder Path as Text
When writing Terminal commands, configuring applications, or sharing file locations with colleagues, you often need the full text path of a file or folder. macOS provides several ways to copy this:
Method 1: Using the Context Menu
- Right-click (or Control-click) on the file or folder you want the path for.
- Press and hold the Option (⌥) key on your keyboard.
- Watch the context menu — the “Copy” option will transform into Copy “[Filename]” as Pathname.
- Click that option to copy the full path (such as
/Users/username/Documents/report.pdf) to your clipboard.
Method 2: Using the Get Info Panel
- Select the file or folder.
- Press ⌘ + I (Command + I) to open the Get Info panel.
- Look for the Where: field, which displays the full directory path.
- Select and copy the path text.
Method 3: Drag and Drop into Terminal
- Open Terminal.
- Drag any file or folder from Finder directly into the Terminal window.
- The full UNIX path will be automatically pasted at the cursor position.
This method is particularly useful when you need to type a long path for a Terminal command — simply type the beginning of the command and then drag the file into Terminal to complete it.
Combining Path Bar with Other Finder Features
For maximum productivity, consider enabling the Path Bar alongside these complementary Finder features:
| Feature | How to Enable | What It Shows |
|---|---|---|
| Path Bar | View > Show Path Bar or ⌘ + Option + P | Breadcrumb trail at bottom of window |
| Status Bar | View > Show Status Bar or ⌘ + / | Item count and available storage space |
| Tab Bar | View > Show Tab Bar | Multiple folder locations in one window |
| Preview Pane | View > Show Preview or ⌘ + Shift + P | File preview and metadata on the right |
Together, these features transform the Finder from a basic file browser into a powerful file management tool without requiring any third-party applications.