-
All replies
-
Helpful answers
-
Aug 15, 2015 8:32 AM in response to BlueIsArtby Niel,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)
-
-
-
Sep 21, 2016 4:58 AM in response to BlueIsArtby tygb ,Please open finder , in search field type shift + 8
Thanks !