Ten kod AppleScript działa dla mnie przy użyciu najnowszej wersji systemu macOS Mojave.
Ten kod będzie przechodził przez każdy element w koszu, przywracając każdy element do pierwotnej lokalizacji.
Jeśli którykolwiek z oryginalnych folderów źródłowych plików w Koszu już nie istnieje, repeat until trashCount is 0
polecenie opuści pętlę. Wszelkie pozostałe pliki w Koszu będą tylko plikami, których nie można przywrócić z tego powodu.
AKTUALIZACJA
Ponieważ możliwe jest wybranie elementu na pulpicie podczas powtarzania pętli procesu przywracania plików z kosza, wybrany element pulpitu może zostać złapany w tym procesie i przeniesiony do kosza. Aby uniknąć tego scenariusza, dodałem kod, który zablokuje aktualnie odblokowane elementy pulpitu, a także odblokuje je na końcu skryptu.
Ponieważ wszystkie elementy pulpitu są teraz zablokowane ... Podczas procesu przywracania plików z kosza, jeśli z jakiegoś powodu przypadkowo wybierzesz plik lub folder na pulpicie, a kod spróbuje przetworzyć wybrany element pulpitu ... wygeneruj okno dialogowe informujące, że element jest zablokowany i zapytaj, czy chcesz kontynuować wysyłanie go do kosza. Zdarzenia systemowe informujące, że blok pod koniec skryptu obsłuży każde z okien dialogowych, które mogły zostać wygenerowane.
property desktopFolder : path to desktop
property unlockedFiles : missing value
tell application "Finder"
set trashCount to count of every item of trash
set unlockedFiles to (items of desktopFolder whose locked is false)
repeat with i in unlockedFiles
set locked of i to true
end repeat
end tell
repeat until trashCount is 0
tell application "Finder" to set orphanCount to count of every item of trash
putFilesBack()
tell application "Finder" to set trashCount to count of every item of trash
if orphanCount is equal to trashCount then exit repeat
end repeat
delay 1
tell application "System Events"
repeat until not (exists of button "Stop" of scroll area 1 of window 2 of application process "Finder")
if exists of button "Stop" of scroll area 1 of window 2 of application process "Finder" then
click button "Stop" of scroll area 1 of window 2 of application process "Finder"
end if
end repeat
end tell
tell application "Finder"
close every Finder window
delay 1
repeat with i in unlockedFiles
set locked of i to false
end repeat
end tell
on putFilesBack()
global trashFiles, trashCount, thisItem
tell application "Finder"
set trashFiles to every item of trash
set frontmost to true
repeat while not frontmost
delay 0.1
end repeat
my closeFinderWindows()
end tell
delay 0.1
tell application "System Events"
tell application process "Finder"
repeat with i from 1 to count of trashFiles
set thisItem to item i of trashFiles
delay 0.1
set frontmost to true
select thisItem
delay 0.1
try
key code 51 using {command down}
end try
delay 0.1
my closeFinderWindows()
delay 0.1
end repeat
end tell
end tell
tell application "Finder" to set trashCount to count of every item of trash
end putFilesBack
on closeFinderWindows()
tell application "Finder"
set finderWindowRef to (a reference to (every Finder window whose name is not "Trash"))
set finderWindowRef to contents of finderWindowRef
close (items of finderWindowRef)
end tell
end closeFinderWindows