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

How do I show hidden files on Lion?

This OS is really frustrating me, first I can't use Front Row and now I can't figure out how to show hidden files. 😟

Posted on Jul 23, 2011 3:57 PM

Reply
36 replies

May 24, 2012 12:57 AM in response to billearl

billearl wrote:


Another AppleScript to toggle hidden files visibility (best saved as an app):


try

set visSet to (do shell script "defaults read com.apple.finder AppleShowAllFiles") as integer as boolean

on error

set visSet to false-- default setting

end try


do shell script "defaults write com.apple.finder AppleShowAllFiles -bool " & (not visSet) as text


tell application "Finder" to quit

delay 1

do shell script "open /System/Library/CoreServices/Finder.app"


this one is the best! Would rather diy something this simple than download one of the many scripts on the net.


@ all those dissing scripts and automator: It's a good skill to learn, too. A "3rd party app" is not "your only hope."

How do I show hidden files on Lion?

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