Show Hidden Windows files on a Mac

Hi,

I have a folder that I have copied from Windows XP to Mac. The files in the folder were hidden when I copied on the mac. I can see the folder but cannot see the files in the folder. How do I see these files on my mac? It is frustrating as I have a few important files in that folder that I cannot view on my mac. Help please!!!

MacBook Pro, Mac OS X (10.6.4)

Posted on Aug 16, 2010 3:45 PM

Reply
7 replies

Aug 16, 2010 4:12 PM in response to nigamm

A couple of ways. One is to copy this script into the AppleScript Editor window and run it. It'll toggle hidden stuff on and off:

if (do shell script "defaults read com.apple.finder AppleShowAllFiles") is equal to "0" then
do shell script "defaults write com.apple.finder AppleShowAllFiles 1"
else
do shell script "defaults write com.apple.finder AppleShowAllFiles 0"
end if
do shell script "killall Finder"


Another, is to use the chflags command to turn off the invisiblity flag. See http://discussions.apple.com/message.jspa?messageID=11788354 for starters.

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.

Show Hidden Windows files on a Mac

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