我正在寻找一种方法来解析多个文件夹以将所有文件移动到一个新文件夹,然后是第二个脚本,使用applescript将所选文件手动移动到新文件夹。
答案 0 :(得分:1)
要移动文件夹中的所有文件,即使是子文件夹中的文件,也要使用此文件...
set parseFolder to choose folder with prompt "Choose the folder to parse"
set destinationFolder to choose folder with prompt "Choose the destination folder"
tell application "Finder"
set foundFiles to files of entire contents of parseFolder
move foundFiles to destinationFolder
end tell
要移动所选文件,请使用此...
set destinationFolder to choose folder with prompt "Choose the destination folder"
tell application "Finder"
set selectedFiles to the selection
move selectedFiles to destinationFolder
end tell
我希望这能告诉你AppleScript有多容易,并激励你开始学习更多知识。如果您想学习,那么您可以去here并尝试使用"教程开始编写脚本#34;
祝你好运。