Show Full Path of the Folder in Finder (mac os x 10.5+)
posted by alp tuğan on 2011.10.05, under OS X Tips & Hacks
05:
It’s possible to see folder path in Finder with the help of one line of code in terminal. To enable folder path view, copy and paste the as follows;
defaults write com.apple.finder _FXShowPosixPathInTitle -bool YES
And to make it work instantly, you should restart or refresh Finder as it follows from Terminal window again;
killall Finder
To revert it back, just type the same codes and change boolean type YES to NO
defaults write com.apple.finder _FXShowPosixPathInTitle -bool YES killall Finder
