나는 현재 OS X (10.9.1)를 실행 중이며 저장 대화 상자에서 ⌘+ ⇧+ .키보드 단축키를 시도했는데 정상적으로 작동했습니다.
또한 키보드 단축키 ^+ ⌘+ ⇧+ .를 사용하여 컴퓨터에 AppleScript를 설정하여 원하는 때마다 Finder에서 숨겨진 파일의 가시성을 토글합니다. 이렇게하면 숨겨진 파일을 표시하기 위해 터미널 명령을 수동으로 실행할 필요가 없으며 실수로 시스템 파일을 수정하지 않도록 신속하게 끌 수 있습니다. 내가 사용 FastScripts 합니다 (로도 제공 맥 앱 스토어 내 애플 스크립트에 대한 키보드 단축키를 설정할 수 있도록를) 내에서 애플 스크립트를 배치 ~/Library/Scripts
폴더.
최신 정보
숨겨진 파일의 표시를 표시하거나 숨길 때마다 Finder를 종료 할 필요가 없도록 스크립트를 업데이트했습니다. markhunte가 지적했듯이 Finder 윈도우의보기 상태를 토글하여 내용 목록을 새로 고칠 수 있습니다. 그것을 지적 해 주셔서 감사합니다. 업데이트 된 스크립트는 다음과 같습니다.
(*
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