यह AppleScript कोड macOS Mojave के नवीनतम संस्करण का उपयोग करके मेरे लिए काम करता है।
यह कोड कचरा में प्रत्येक आइटम के माध्यम से लूप करेगा, प्रत्येक आइटम को उनके मूल स्थान पर वापस लाएगा।
यदि ट्रैश में मौजूद फ़ाइलों में से कोई भी मूल स्रोत फ़ोल्डर मौजूद नहीं है, तो repeat until trashCount is 0
कमांड लूप से बाहर निकल जाएगी। कचरा पेटी में बची हुई सभी फाइलें केवल ऐसी फाइलें होंगी जिन्हें इस कारण से वापस नहीं लाया जा सकता था।
अपडेट करें
चूंकि कचरा से फ़ाइलों को डालने की प्रक्रिया के दोहराव के दौरान अपने डेस्कटॉप पर किसी आइटम का चयन करना संभव है, इसलिए चयनित डेस्कटॉप आइटम इस प्रक्रिया में फंस सकते हैं और कचरे में चले जा सकते हैं। इस परिदृश्य से बचने के लिए, मैंने कोड जोड़ा जो वर्तमान में अनलॉक किए गए डेस्कटॉप आइटम को लॉक कर देगा और स्क्रिप्ट के अंत में उन्हें अनलॉक भी करेगा।
क्योंकि सभी डेस्कटॉप आइटम अब बंद हो गए हैं ... कूड़ेदान से फाइलें वापस लाने की प्रक्रिया के दौरान, यदि किसी कारण से आप गलती से अपने डेस्कटॉप पर एक फ़ाइल या फ़ोल्डर का चयन करते हैं और कोड उस डेस्कटॉप आइटम को चुनने की प्रक्रिया का प्रयास करता है ... यह होगा उस आइटम का उल्लेख करते हुए एक डायलॉग विंडो जेनरेट करें और पूछें कि क्या आप इसे ट्रैश में भेजना जारी रखना चाहते हैं। सिस्टम ईवेंट बताता है कि स्क्रिप्ट के अंत में ब्लॉक उन डायलॉग बॉक्स में से किसी को भी हैंडल करेगा जो उत्पन्न हो सकता है।
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