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 ⇧+..
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 ⇧+..
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!
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.
In the terminal enter
defaults write com.apple.Finder AppleShowAllFiles 1
sudo
at the beginning of the command – MattDMo Aug 18 '13 at 23:35