Pour pouvoir visualiser les fichiers invisibles
Montage tardif
Depuis Sierra (MacOS 10.12), vous pouvez utiliser shift cmd . pour changer la visibilité. Vous avez seulement besoin de l'ancien AppleShowAllFiles
si vous voulez que le changement soit permanent.
Ouvrez l'éditeur Applescript, dans Applications > Utilitaires puis copiez/collez ceci dans un nouveau script...
Depuis El Capitan, l'astuce consistant à changer de vue ne fonctionne plus. Il faut donc quitter le Finder.
Pour une méthode permettant d'en faire un Service avec une commande clé, voir
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 devrait fonctionner avec cette version de rafraîchissement de la vue, qui était plus rapide et plus fluide, mais elle a cessé de fonctionner à 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 double-cliquer pour afficher ou masquer les fichiers invisibles.
Vous n'avez pas besoin de tuer le Finder pour cette option, un rafraîchissement est suffisant - et peut être plus rapide.