how to display hidden files in finder

OSX Yosemite, but how to display hidden files in finder?

MacBook Pro, OS X Yosemite (10.10.5)

Posted on Aug 15, 2015 8:26 AM

Reply
4 replies

Aug 15, 2015 8:32 AM in response to BlueIsArt

Choose Utilities from the Finder's Go menu, open the Script Editor, and run the following:


tell application "Finder" to quit

try

if (do shell script "defaults read com.apple.finder AppleShowAllFiles") is not "1" then error

do shell script "defaults write com.apple.finder AppleShowAllFiles 0"

on error

do shell script "defaults write com.apple.finder AppleShowAllFiles 1"

end try

delay 2

tell application "Finder" to run


If you change your mind later, run the script again.


(131792)

This thread has been closed by the system or the community team. You may vote for any posts you find helpful, or search the Community for additional answers.

how to display hidden files in finder

Welcome to Apple Support Community
A forum where Apple customers help each other with their products. Get started with your Apple Account.