Skip to content

Instantly share code, notes, and snippets.

@hernamesbarbara
Created February 25, 2014 18:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hernamesbarbara/9214584 to your computer and use it in GitHub Desktop.
Save hernamesbarbara/9214584 to your computer and use it in GitHub Desktop.

Show full directory path in Mac OS X Finder window

Follow the steps below to display the full file path within Finder window title bars as you navigate your mac.

defaults write com.apple.finder _FXShowPosixPathInTitle -bool YES

Now kill the Finder to see the change take effect.

killall finder

And if for some reason you need to revert this change, that's done by simply switching the YES to a NO in the cmd above.

defaults write com.apple.finder _FXShowPosixPathInTitle -bool NO
killall finder
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment