How to make the Mac computer display the file path at the top of the Finder window?

By default, only the file name is displayed at the top of the Finder window, but the path of the file is not displayed. Today I will teach you a method to display the file path at the top of the Finder window, and you can know the location of the folder at a glance. Come and have a look with my friends!

Mac defaults to only display the folder name at the top of the Finder window

17c859e16cae13bf455c3d3801f7821a.jpeg

Setting method

Enter the following command in the terminal:
defaults write com.apple.finder _FXShowPosixPathInTitle -bool TRUE; killall Finder
Then press enter and look at the top of the Finder window. At this time, the path is displayed instead of the name.

5258ec091faca88db73fca83bdd9d630.jpeg

What should I do if I want to restore the default settings? Enter in the terminal:
defaults delete com.apple.finder _FXShowPosixPathInTitle; killall Finder
and then press enter.


Guess you like

Origin blog.51cto.com/15118280/2678438