Görünmez dosyaları görebilmek için…
Applescript Editor uygulamasını açın, Uygulamalar> Yardımcı Programlar öğesinden sonra bunu yeni bir komut dosyasına kopyalayıp yapıştırın ...
El Capitan, görünümü değiştirmenin hilesi artık çalışmadığından, Finder'dan çıkmak için geri döndü
Bunu anahtar komutuyla bir Hizmete dönüştürme yöntemi için bkz.
Https://apple.stackexchange.com/a/258741/85275
set newHiddenVisiblesState to "YES"
try
set oldHiddenVisiblesState to do shell script "defaults read com.apple.finder AppleShowAllFiles"
if oldHiddenVisiblesState is in {"1", "YES"} then
set newHiddenVisiblesState to "NO"
end if
end try
do shell script "defaults write com.apple.finder AppleShowAllFiles " & newHiddenVisiblesState
do shell script "killall Finder"
return input
Mavericks / Yosemite, daha hızlı ve daha pürüzsüz olan bu görünüm yenileme sürümü ile çalışmalı, ancak El Capitan'da çalışmayı bıraktı ...
set newHiddenVisiblesState to "YES"
try
set oldHiddenVisiblesState to do shell script "defaults read com.apple.finder AppleShowAllFiles"
if oldHiddenVisiblesState is in {"1", "YES"} then
set newHiddenVisiblesState to "NO"
end if
end try
do shell script "defaults write com.apple.finder AppleShowAllFiles " & newHiddenVisiblesState
tell application "Finder"
set theWindows to every Finder window
repeat with i from 1 to number of items in theWindows
set this_item to item i of theWindows
set theView to current view of this_item
if theView is list view then
set current view of this_item to icon view
else
set current view of this_item to list view
end if
set current view of this_item to theView
end repeat
end tell
Ardından, görünmez dosyaları gösterme / gizleme arasında geçiş yapmak için çift tıklatabileceğiniz bir uygulama olarak kaydedin.
Bu geçiş için Finder'ı öldürmeniz gerekmez, yenileme yeterlidir - ve daha hızlı olabilir.