When you are using a Mac and want to show hidden files, there is no need to use third party apps! You can do this with a key combination or via terminal. In your finder window press SHIFT + CMD + .
or via terminal:
$ defaults write com.apple.finder AppleShowAllFiles TRUE
$ killall Finder
to reverse:
$ defaults write com.apple.finder AppleShowAllFiles FALSE
$ killall Finder