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)
OSX Yosemite, but how to display hidden files in finder?
MacBook Pro, OS X Yosemite (10.10.5)
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)
Does this thread help?
Thanks Niel - spot on!
Please open finder , in search field type shift + 8
Thanks !
how to display hidden files in finder