错误将大量文件放回了废纸箩,选中单个文件时右键可以“放回原处”,批量选中时就不能放回原处了,终于在网上找到了解决方法,由于系统版本问题,度娘到的内容还是有偏差,操作的时候自己根据系统出了
本人系统:
Mac(OS 10.13.4)
采用Automator(自动操作)恢复
1、打开Automator
2、选择“服务” -> "选取" 进入图二, 点击 运行AppleScript
3、编辑 AppleScript脚本内容:(把里面之前的内容全部删除,把下面的内容全部拷贝到里面)
tell application "Finder"
activate
set file_count to count of (trash's items)
-- log file_count
repeat file_count times
recoverMyFile() of me
end repeat
end tell
on recoverMyFile()
tell application "System Events"
set frontmost of process "Finder" to true
tell application "Finder"
open trash
select the first item of window "Trash"
end tell
tell process "Finder"
key code 51 using command down
delay 1 -- Yes, it's stupid, but necessary :(
end tell
end tell
end recoverMyFile
4、点击右上角的运行,如果报下面的错误,不着急,请将脚本代码中的
select the first item of window "Trash"
替换为
select the first item of window "废纸篓"
5、重新运行:(工作流程已完成)
到这里,恭喜你已经批量恢复完成了,快去文件中看看吧。 脚本的作用就是执行:选中单个文件->单击右键->"放回原处"。在废纸箩中不断重复操作的过程。