답변:
먼저 Dock에서 휴지통을 클릭하여여십시오.
Finder에서 Command-shift-G (폴더로 이동)를 누르고 ~ / .Trash로 이동
하십시오.
그런 다음 사이드 바에 휴지통이 있습니다.
사이드 바에서 휴지통을 비우려면 Automator를 열고 애플리케이션을 작성하십시오. 응용 프로그램에서 유일한 동작으로 "AppleScript 실행"을 선택하고이 AppleScript를 사용하십시오.
on run {}
tell application "Finder"
empty the trash
end tell
end run
응용 프로그램을 "빈 휴지통"으로 저장하고 사이드 바로 드래그하십시오.
iCloud를 사용하도록 설정 한 경우 Daniel 이 제공 한 경로를 조정해야 할 수도 있습니다.
~/Library/Mobile\ Documents/com~apple~CloudDocs/.Trash
이 기사 에 따르면 각 파티션에는 자체 휴지통 폴더가 있으므로 사이드 바로 끌어다 놓는 것은 전역 휴지통이 아닙니다. 이 스크립트 는 다음과 같습니다
on open
tell the application "Finder"
move the selection to the trash
end tell
end open
스크립트를 응용 프로그램으로 저장하고 아이콘을 제공 한 다음 사이드 바로 드래그하십시오.
그래도 위험 해 보인다고 생각합니다. 파일을 선택한 상태에서 단순히 휴지통 내용을 보려면 어떻게해야합니까? 이 답변 은 안전 해 보입니다.
on open input
repeat with i in input
tell application "Finder" to move i to the trash
end repeat
end open
on run
tell application "Finder" to open trash
end run