এই অ্যাপলস্ক্রিপ্ট কোডটি ম্যাকোস মোজভেভের সর্বশেষতম সংস্করণটি ব্যবহার করে আমার জন্য কাজ করে।
এই কোডটি ট্র্যাশের প্রতিটি আইটেমের মধ্য দিয়ে লুপ করে প্রতিটি আইটেমকে তাদের মূল স্থানে ফিরিয়ে দেবে।
ট্র্যাসে থাকা ফাইলগুলির মূল উত্স ফোল্ডারের মধ্যে যদি আর উপস্থিত না থাকে, repeat until trashCount is 0
কমান্ডটি লুপ থেকে প্রস্থান করবে। ট্র্যাসে থাকা কোনও ফাইল কেবল সেই ফাইলগুলিতে থাকবে যা এই কারণে পিছনে ফেলা যায়নি।
হালনাগাদ
যেহেতু ট্র্যাশ থেকে ফাইলগুলি ফেরত দেওয়ার প্রক্রিয়াটির পুনরাবৃত্ত লুপ চলাকালীন আপনার ডেস্কটপে কোনও আইটেম নির্বাচন করা সম্ভব, নির্বাচিত ডেস্কটপ আইটেমটি প্রক্রিয়াতে ধরা পড়তে পারে এবং ট্র্যাসে স্থানান্তরিত করতে পারে। এই দৃশ্যটি এড়াতে, আমি এমন কোড যুক্ত করেছি যা বর্তমানে আনলক করা ডেস্কটপ আইটেমগুলিকে লক করবে এবং স্ক্রিপ্টের শেষে এগুলি আনলক করবে।
কারণ সমস্ত ডেস্কটপ আইটেম এখন লক হয়ে গেছে ... ট্র্যাশ থেকে ফাইলগুলি ফেরত দেওয়ার প্রক্রিয়া চলাকালীন, যদি কোনও কারণে আপনি ঘটনাক্রমে আপনার ডেস্কটপে কোনও ফাইল বা ফোল্ডার নির্বাচন করেন এবং কোডটি সেই নির্বাচিত ডেস্কটপ আইটেমটি প্রক্রিয়া করার চেষ্টা করে ... এটি হবে আইটেমটি লক করা আছে উল্লেখ করে একটি ডায়ালগ উইন্ডো উত্পন্ন করুন এবং আপনি এটি ট্র্যাশে পাঠানো চালিয়ে যেতে চান কিনা তা জিজ্ঞাসা করুন। স্ক্রিপ্টের শেষের দিকে ব্লক বলার সিস্টেম ইভেন্টগুলি সেই ডায়ালগ বাক্সগুলির মধ্যে যে কোনওটি জেনারেট করে থাকতে পারে handle
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