Re: Toggle invisible files
Re: Toggle invisible files
- Subject: Re: Toggle invisible files
- From: Phil Stokes <email@hidden>
- Date: Thu, 10 Nov 2016 06:50:21 +0700
set _show to "defaults write com.apple.finder AppleShowAllFiles 1; killall Finder" set _hide to "defaults write com.apple.finder AppleShowAllFiles 0; killall Finder" set _readCurrent to "defaults read com.apple.finder AppleShowAllFiles"
set _state to do shell script _readCurrent if _state does not contain "1" then do shell script _show else do shell script _hide end if
Best
Phil |
_______________________________________________
Do not post admin requests to the list. They will be ignored.
AppleScript-Users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
Archives: http://lists.apple.com/archives/applescript-users
This email sent to email@hidden