OS X 使用技巧——在Finder窗口标题栏上显示路径

  Finder窗口默认显示当前文件夹的名称或当前所在的模式(例如AirDrop)。如果想要显示路径(用User/【当前用户账号名称】/Documents 替代以前显示的Documents),打开终端并运行以下命令:

  defaults write com.apple.finder _FXShowPosixPathInTitle -boot TRUE; killall Finder

  请注意,如果在Finder窗口浏览“我的所有文件”视图的话,将看到:

  /System/Library/CoreServices/Finder/Contents/Resources/MyLibraries/myDocuments.cannedSearch

  它指向了“我的所有文件”功能在系统中存放的位置。

  如果想恢复默认,输入以下命令:

  defaults delete com.apple.finder -FXShowPosixPathInTitle; killall Finder

原文地址:https://www.cnblogs.com/IcanFixIt/p/4681238.html