参考:
Mac OSX系统 显示和隐藏文件
1.显示隐藏文件:
打开Terminal,并输入以下命令:
defaults write com.apple.finder AppleShowAllFiles -bool true
// 或
defaults write com.apple.finder AppleShowAllFiles YES
2.隐藏隐藏文件:
defaults write com.apple.finder AppleShowAllFiles -bool false
// 或
defaults write com.apple.finder AppleShowAllFiles NO
之后重启Finder,即可查看效果。重启Finder的方法:鼠标单击窗口左上角的苹果标志 => 强制退出 => Finder =>重新启动。
2018.5