When operating files with Finer, I felt that it was very inconvenient not to know the displayed hierarchy, so I set the absolute path to always be displayed in the Finder menu column as follows.
$ defaults write com.apple.finder _FXShowPosixPathInTitle -boolean true
$ killall Finder
By default, only the directory name was displayed, but now the full path is displayed.
If you want to return to the original state, you can easily return to the original state by following the steps below.
Hit the following command.
$ defaults write com.apple.finder _FXShowPosixPathInTitle -boolean false
Restart Finder in the same way
$ killall Finder
https://pc-karuma.net/mac-finder-fullpath/
Recommended Posts