Open Terminal
Type:
defaults write com.apple.Finder AppleShowAllFiles YES
Press Enter
Type:
killall Finder
Press Enter
To hide the files repeat but replace YES with FALSE
To hide the files repeat but replace YES with FALSE
Hi, how I can see hidden folders (/bin/, /etc/) in Finder??
Thx to advice, but maybe instead of "YES" use "TRUE"??))
"FALSE" - why not "NO"???
Yes, No True, False, they are all boolean terms and mean the same thing.
If you want something simpler, try this simple AppleScript I made (it saves you having to type in the commands every time)
Great script))thx
But I can't understand...in the start body script exist this is strings:
----------------------------------------------------------------------------
if the_answer is "Show" then
tell application "Terminal"
activate
do script "defaults write com.apple.Finder AppleShowAllFiles YES"
do script "killall Finder"
quit
--------------------------------------------------------------------------------
string eqv "hands mode" how it was writed top:
in terminal type:
defaults write com.apple.Finder AppleShowAllFiles YES
killall Finder
QUESTION:
with script - it worked(I can see hidden files in Finder)
in "hands mode" - DON'T WORKED!!!(hidden files still hidden)
WHY?????