ขณะนี้ฉันใช้ OS X (10.9.1) และลองแป้นพิมพ์ลัด⌘+ ⇧+ .ในกล่องโต้ตอบบันทึกและใช้งานได้ดี
ฉันยังติดตั้ง AppleScript ในเครื่องของฉันกับแป้นพิมพ์ลัดของ^+ ⌘+ ⇧+ .ซึ่งสลับการแสดงผลของไฟล์ที่ซ่อนอยู่ภายใน Finder เมื่อใดก็ตามที่ฉันต้องการ วิธีนี้ฉันไม่ต้องเรียกใช้คำสั่งเทอร์มินัลด้วยตนเองเพื่อแสดงไฟล์ที่ซ่อนอยู่และฉันสามารถปิดได้อย่างรวดเร็วเพื่อหลีกเลี่ยงการแก้ไขไฟล์ระบบโดยไม่ตั้งใจ ฉันใช้FastScripts (มีอยู่ในMac App Store ) เพื่อให้ฉันตั้งค่าแป้นพิมพ์ลัดสำหรับ AppleScript ของฉันและวาง AppleScript ไว้ใน~/Library/Scripts
โฟลเดอร์ของฉัน
ปรับปรุง
ฉันได้อัปเดตสคริปต์ของฉันดังนั้น Finder ไม่จำเป็นต้องฆ่าทุกครั้งที่คุณต้องการแสดง / ซ่อนการแสดงไฟล์ที่ซ่อน ตามที่ markhunte ระบุไว้คุณสามารถสลับสถานะการดูของหน้าต่าง Finder ซึ่งจะรีเฟรชรายการของเนื้อหา ขอบคุณ markhunte ที่ชี้ให้ฉันเห็น! นี่คือสคริปต์ที่อัปเดต:
(*
Author: Anil Natha
Description:
This script toggles the visibility of hidden files in OS X. This includes
showing hidden files in Finder windows and on the desktop.
Last Updated: 2015-02-20
*)
tell application "System Events"
try
set hiddenFilesDisplayStatus to do shell script "defaults read com.apple.finder AppleShowAllFiles"
on error
set hiddenFilesDisplayStatus to "NO"
end try
set hiddenFilesNewDisplayStatus to "NO"
if hiddenFilesDisplayStatus is "NO" then
set hiddenFilesNewDisplayStatus to "YES"
end if
do shell script "defaults write com.apple.finder AppleShowAllFiles " & hiddenFilesNewDisplayStatus
end tell
tell application "Finder"
set allWindows to windows
repeat with currentWindow in allWindows
set currentWindowView to get the current view of the currentWindow
set alternateWindowView to list view
if currentWindowView is list view then
set alternateWindowView to icon view
end if
set the current view of the currentWindow to alternateWindowView
set the current view of the currentWindow to currentWindowView
end repeat
end tell
สคริปต์รุ่นที่เก่ากว่ามีการระบุไว้ด้านล่าง แม้ว่าจะใช้งานได้ แต่ฉันไม่แนะนำให้ใช้อีกต่อไปในขณะนี้ที่สคริปต์ด้านบนทำงานได้อย่างมีประสิทธิภาพมากขึ้น
tell application "System Events"
set hiddenFilesDisplayStatus to do shell script "defaults read com.apple.finder AppleShowAllFiles"
set hiddenFilesNewDisplayStatus to "NO"
if hiddenFilesDisplayStatus is "NO" then
set hiddenFilesNewDisplayStatus to "YES"
end if
do shell script "defaults write com.apple.finder AppleShowAllFiles " & hiddenFilesNewDisplayStatus
do shell script "killall Finder"
end tell