Bu çok özel bir sorunuza cevap vermez ancak alternatif bir çözüm sunar. Gizli dosyalara kolay ve hızlı bir şekilde erişmek ve her zaman açık olmasını istemediğinizi varsayarsak, yine de önerilmez.
İşte, Göster veya Gizle için tek bir tıklamaya kadar süreci otomatik hale getiren küçük bir komut dosyası . Elimine eder:
1-Her zaman gösterilen gizli dosyalarla ilgili olası sorunlar
2-açılış terminali ve gizli dosyaları göster yazarak, her seferinde komut.
3-Son derece kullanıcı dostudur.
Kolay ve hızlı erişim için bunu bağlantı istasyonunuza uygulama olarak yükleyin.
-- AppleScript to toggle hidden "." files
-- Submitted by Baltwo on Apple Support Community
try
do shell script "defaults read com.apple.finder AppleShowAllFiles"
on error
do shell script "defaults write com.apple.finder AppleShowAllFiles 0"
end try
if (do shell script "defaults read com.apple.finder AppleShowAllFiles") is equal to "0" then
do shell script "defaults write com.apple.finder AppleShowAllFiles 1"
else
do shell script "defaults write com.apple.finder AppleShowAllFiles 0"
end if
do shell script "killall Finder"