Tutorial : Show hidden files in Finder Mac OSX
January 28th, 2010 Posted in Mac OSX
Unlike windows, Mac OSX has a different to show hidden files. We just can’t right click and show all files.
So, in Mac OSX we need to go to Terminal and put this command.
To open show all files
1 | defaults write com.apple.finder AppleShowAllFiles TRUE |
To disable show all files
1 | defaults write com.apple.finder AppleShowAllFiles FLASE |
And then kill all the Finder apps and start it up again.
1 | killall Finder |