Looks like no one’s replied in a while. To start the conversation again, simply ask a new question.

how do i display hidden files

how do i display hidden files

MacBook Pro, Mac OS X (10.6.8)

Posted on Feb 14, 2012 3:56 PM

Reply
6 replies

Feb 14, 2012 3:58 PM in response to pinngwinn

Enable Finder to Show Invisible Files and Folders


Open the Terminal application in your Utilities folder. At the prompt enter or paste the following command line then press RETURN.


defaults write com.apple.finder AppleShowAllFiles TRUE

killall Finder


To turn off the display of invisible files and folders enter or paste the following command line and press RETURN.


defaults write com.apple.finder AppleShowAllFiles FALSE

killall Finder


Alternatively you can use one of the numerous third-party utilities such as TinkerTool or ShowHideInvisibleFiles - VersionTracker or MacUpdate.

Apr 23, 2012 6:29 AM in response to pinngwinn

Save the below apple script as application



set OnOff to do shell script "defaults read com.apple.finder AppleShowAllFiles"

if OnOff = "NO" or OnOff = "OFF" then

set OnOff to "ON"


tell application "Finder"

display dialog "Show all hidden files in this Mac ?" buttons {"Show Hidden Files", "Cancel"} default button 2 with icon 1

end tell

else

set OnOff to "OFF"


tell application "Finder"

display dialog "Hide all hidden files in this Mac ?" buttons {"Hide Hidden Files", "Cancel"} default button 2 with icon 1

end tell


end if


do shell script "defaults write com.apple.finder AppleShowAllFiles " & OnOff & " ; killall Finder"

how do i display hidden files

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