It is possible to enable and disable the file path display using terminal. The method we are going to see here will display the file path in the title bar of the finder window.
For enabling path view, execute the following command in the terminal window of your mac.
Code:
|
1 |
defaults write com.apple.finder _FXShowPosixPathInTitle -bool YES |
Now restart the finder and you will be able to see the path of the file selected will be displayed on the title bar of the finder window.
For disabling path view in the title bar, execute the following command in the terminal window of your mac.
Code:
|
1 |
defaults write com.apple.finder _FXShowPosixPathInTitle -bool NO |



