打开终端命令,执行下面的命令,会把原来隐藏的文件全部显示出来,如果想隐藏,那么把true改成false
defaults write com.apple.finder AppleShowAllFiles -bool true; KillAll Finder
每次执行命令也挺麻烦的,可以一段代码生成一个.app文件,每次操作的时候打开操作就好了。
1.打开 AppleScript 编辑器 这个自带 App(前往->实用工具-》打开applescript)
2. 新建一个文档,将下面的代码粘贴进去,编译,然后导出 .app 应用程序,方便切换显示/隐藏两个状态。
display dialog "隐藏/显示隐藏文件" buttons {"显示", "隐藏"} with icon 2 with title "Switch to presentation mode" default button 1 set switch to button returned of result if switch is "隐藏" then do shell script "defaults write com.apple.finder AppleShowAllFiles -bool false; KillAll Finder" else do shell script "defaults write com.apple.finder AppleShowAllFiles -bool true; KillAll Finder" end if