将文件复制到文件夹applescript

时间:2018-01-31 17:45:14

标签: duplicates applescript directory

我有这个

tell application "Finder"
    duplicate folder "HD:Users:tcok:doc:Templates:Video:" to projectFullPath
end tell

但是我只需要将Template:Video中的文件移动到projectFullPath。现在它随之移动Video文件夹,而不仅仅是Video

中的文件和子文件夹

1 个答案:

答案 0 :(得分:1)

tell application "Finder"
    duplicate files in folder "HD:Users:tcok:doc:Templates:Video:" to projectFullPath
end tell

只需在files之后添加duplicate即可复制文件,或使用items复制文件文件夹。