Finderのタイトルバーにフォルダのフルパスを表示する方法

ターミナルを使って、フルパスを表示する

まず、「起動ディスク(Macintosh HDなど)」→「アプリケーション」→「ユーティリティ」と移動し「ターミナル」を起動します。

次に、ターミナルに下のように入力します。

defaults write com.apple.finder _FXShowPosixPathInTitle -boolean true

さらに、Finderを再起動します。

killall Finder

すると、下のようにFinderのウインドウの最上部にフルパスを表示することができます。

なお、設定を解除するには、

defaults delete com.apple.finder _FXShowPosixPathInTitle
killall Finder

設定を確認するには、

defaults read com.apple.finder _FXShowPosixPathInTitle

と、入力します。