Pour pouvoir visualiser des fichiers invisibles…
Ouvrez Applescript Editor, dans Applications> Utilitaires puis copiez / collez-le dans un nouveau script ...
Depuis El Capitan, l'astuce de changement de vue ne fonctionne plus, il est donc temps de quitter le Finder
Pour une méthode pour en faire un service avec un raccourci clavier, voir
/apple//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 devrait fonctionner avec cette version de rafraîchissement de la vue, qui était plus rapide et plus fluide, mais elle a juste cessé de fonctionner chez El Capitan ...
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
Ensuite, enregistrez en tant qu'application, que vous pouvez ensuite simplement double-cliquer pour basculer en affichant / masquant les fichiers invisibles.
Vous n'avez pas besoin de tuer le Finder pour cette bascule, un rafraîchissement est suffisant - et peut être plus rapide.