Để có thể xem tập tin vô hình
Mở Trình soạn thảo Applescript, trong Ứng dụng> Tiện ích, sau đó sao chép / dán tệp này vào tập lệnh mới ...
Vì El Capitan, thủ thuật thay đổi chế độ xem không còn hoạt động nữa, do đó, quay trở lại để thoát Finder
Để biết phương pháp biến điều này thành Dịch vụ bằng lệnh chính, hãy xem
/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 phải hoạt động với phiên bản làm mới khung nhìn này, nhanh hơn và mượt mà hơn, nhưng nó chỉ dừng hoạt động tại 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
Sau đó, Lưu dưới dạng một ứng dụng, sau đó bạn có thể chỉ cần nhấp đúp để chuyển đổi hiển thị / ẩn các tệp vô hình.
Bạn không cần phải tắt Trình tìm kiếm để chuyển đổi này, việc làm mới là đủ - & có thể nhanh hơn.