Toggle hidden files on and off
#2
Posted 03 August 2010 - 05:29 AM
The scripts are fully editable, so you can use them any way you like.
http://www.macupdate...ble-script-pack
ALSO NOTE: In Snow Leopard you can temporarily show hidden files in open/save dialogs by hitting "Command + Shift + ."
This post has been edited by zwei: 03 August 2010 - 05:37 AM
#3
Posted 03 August 2010 - 06:17 AM
"2010-08-03 09:13:20.712 defaults[354:60f]
The domain/default pair of (com.apple.finder, AppleShowAllFiles) does not exist"
Hmmmmn......
#4
Posted 03 August 2010 - 06:33 AM
Cake!
#5
Posted 03 August 2010 - 07:08 AM
In opinion this is the easiest way.
#6
Posted 03 August 2010 - 07:47 AM
majorb, on 03 August 2010 - 07:08 AM, said:
In opinion this is the easiest way.
Thanks majorb... perfect!
#7
Posted 03 August 2010 - 07:48 AM
http://www.ragesw.co...s/explorer.html
#8
Posted 03 August 2010 - 07:49 AM
MrMark001, on 03 August 2010 - 06:17 AM, said:
"2010-08-03 09:13:20.712 defaults[354:60f]
The domain/default pair of (com.apple.finder, AppleShowAllFiles) does not exist"
Hmmmmn......
This happens if you haven't previously set that preference. You can add these five lines of Applescript between on run and the code you pasted in and that should solve the problem:
try
do shell script "defaults read com.apple.finder AppleShowAllFiles"
on error
do shell script "defaults write com.apple.finder AppleShowAllFiles 0"
end try
or you can likely just go to terminal and set the preference one time.
#9
Posted 03 August 2010 - 07:49 AM
#10
Posted 03 August 2010 - 07:57 AM
majorb, on 03 August 2010 - 07:08 AM, said:
In opinion this is the easiest way.
Thanks, majorb, this works great!
(Just a note: when I clicked on the link, the period was included in the URL causing a page not found error.)
http://www.apple.com...iddenfiles.html
#11
Posted 03 August 2010 - 08:37 AM
Why use terminal and automator if a simple widget does al the work?
#12
Posted 03 August 2010 - 08:49 AM
#13
Posted 03 August 2010 - 10:36 AM
egelb, on 03 August 2010 - 08:49 AM, said:
I use Invisibility Toggler (http://www.versiontr...fo/macosx/32246). It's even simpler and quicker than Show Hidden Files.
#14
Posted 03 August 2010 - 01:25 PM
majorb, on 03 August 2010 - 07:08 AM, said:
In opinion this is the easiest way.
This is, by far, the easiest solution. Thank you!!
Help












