Macでフォルダ(directory)のpathを表示する方法

Mac ではフォルダ(directory)をFinder で開いていると、フォルダのタイトルにはフォルダ名しか示していない。ルートからのパスを表示しておいたほうが、同じようなフォルダ名があるときは便利である。

ターミナルを立ち上げ

defaults write com.apple.finder _FXShowPosixPathInTitle -boolean true

と$の後に入力し、Enterキーを押す。次に Finderの再起動コマンドを入力する。

killall Finder

フォルダのタイトルにrootからのpathが表示される。

元に戻すには

defaults write com.apple.finder _FXShowPosixPathInTitle -boolean true

と入力しFinder を再起動すればいい。
Finder の再起動は、Opt+Comd+Esc を押して アプリケーションの強制終了 ウインドウを出し、一番下の  Finder を選択し 再度開く ボタンをクリックでもいい。