7

Is it possible to set by default to show hidden files and folders in Open and Save dialogs ?

I know it is possible to trigger to show hidden for dialog lifetime by press Command ⌘+Shift ⇧+..

Cajunluke
  • 17,704
diimdeep
  • 1,094

3 Answers3

1

I just asked this question again, since there were no real answers here, and according to this answer all you need to do is run

defaults write -g AppleShowAllFiles -bool true

and restart whichever application(s) you're using, and you're all set. No restarting Finder or your computer. Brilliant!

MattDMo
  • 2,965
0

Not without using the chflags nohidden command, which is not recommended. One of the third-party file manager utilities such as PathFinder may have such an option.

da4
  • 5,675
  • chflags nohidden work only for Finder, not Open/Save dialogs. Also I don't see how PathFinder can help. – diimdeep Sep 26 '12 at 18:40
  • chflags nohidden should affect file dialogs as well, but it can't be used to show files that start with a period. – Lri Sep 27 '12 at 10:48
0

In the terminal enter

defaults write com.apple.Finder AppleShowAllFiles 1
tgunr
  • 161
  • 8