เพื่อให้สามารถดูไฟล์ที่มองไม่เห็น ...
เปิดตัวแก้ไขแอปพลิเคชันในแอปพลิเคชัน> โปรแกรมอรรถประโยชน์จากนั้นคัดลอก / วางสิ่งนี้ลงในสคริปต์ใหม่ ...
ตั้งแต่ El Capitan เคล็ดลับในการเปลี่ยนมุมมองไม่ทำงานอีกต่อไปดังนั้นจึงกลับไปสู่การเลิกค้นหา
สำหรับวิธีการทำให้เป็นบริการที่มีคำสั่งที่สำคัญดู
/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 ควรทำงานกับเวอร์ชันรีเฟรชมุมมองนี้ซึ่งเร็วกว่าและราบรื่นกว่า แต่ก็หยุดทำงานที่ 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
จากนั้นบันทึกเป็นแอปพลิเคชันซึ่งคุณสามารถคลิกสองครั้งเพื่อสลับการแสดง / ซ่อนไฟล์ที่มองไม่เห็น
คุณไม่จำเป็นต้องฆ่า Finder เพื่อสลับนี้การรีเฟรชก็เพียงพอแล้ว & อาจเร็วขึ้น