Show or not show hidden files on MacOS

Show or not show hidden files on MacOS

  • show hidden files
$ defaults write com.apple.finder AppleShowAllFiles -boolean true
$ killall Finder
1
2
  • not show hidden files
$ defaults write com.apple.finder AppleShowAllFiles -boolean false 
$ killall Finder
1
2

评论