AppleShowAllFiles不显示隐藏文件


9

我使用OS X 10.8,我输入以下内容

defaults write com.apple.Finder AppleShowAllFiles YES
killall Finder

但我仍然无法在用户目录中看到任何隐藏文件,如.bash_history.Trash.cups.gem等。

Answers:


13

捆绑包标识符为com.apple.finder小写。

defaults write com.apple.Finder AppleShowAllFiles YES 也会将设置写为字符串,但通常并不重要。

defaults write com.apple.finder AppleShowAllFiles -bool true
osascript -e 'quit app "Finder"'

在10.8.4为我工作
凯文蒙克

0

我有这个问题。我尝试了Lauri的解决方案,并取得了间歇性的成功。我发现我的特殊问题是我有时从root运行命令。从标准权限运行它证明了一贯的成功,从root运行它证明始终不成功。


0

我有2台Mac,都运行10.8.3。我能够使用

 defaults write com.apple.Finder AppleShowAllFiles YES

我的Mac Mini上的建议成功,但无论多少次(或我使用哪种方法)重启Finder,它都无法在macbook pro上运行。当我使用“布尔”方法时,它第一次适用于macbook。macbook是2010年的单位,而2012年是mini,但所有这些只应该在操作系统中,与硬件无关。很奇怪,但非常感谢发布这两个选项。我开始疯狂地试图在笔记本电脑上看到隐藏的文件。我甚至使用“sudo”作为“AppleShowAllFiles”方法,认为它是权限的东西,但这没有帮助。


0

请用于defaults read com.apple.finder AppleShowAllFiles阅读当前状态。

需要注意的是它的不同的使用具有根用户命令(例如须藤)或标准的用户,并使用com.apple.finder查找小写。

对于隐藏隐藏文件,请使用defaults write com.apple.finder AppleShowAllFiles 0当前用户终端窗口使用sudosudo su命令。

对于显示隐藏文件使用defaults write com.apple.finder AppleShowAllFiles 1

然后使用重新启动Finder killall Finder

在OS X 10.8.4上测试过。


-1

使用-boolean选项:

defaults write com.apple.Finder AppleShowAllFiles -boolean TRUE
killall Finder

YES 不会自动解释为布尔值,而是作为字符串。


no..does not working:“意外的参数为TRUE;保持默认值不变。”
KMC

@KMC好的,-boolean版本怎么样?对不起,我没有10.8系统可供测试。
MattiSG

1
同样的错误。我想回到10.6 ......
KMC

@KMC你使用哪个OS X版本,10.6或10.8?
nohillside

1
我虽然我的问题清楚地说明10.8(第一行)
KMC
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.