我有这个
tell application "Finder"
duplicate folder "HD:Users:tcok:doc:Templates:Video:" to projectFullPath
end tell
但是我只需要将Template:Video中的文件移动到projectFullPath。现在它随之移动Video文件夹,而不仅仅是Video
中的文件和子文件夹答案 0 :(得分:1)
tell application "Finder"
duplicate files in folder "HD:Users:tcok:doc:Templates:Video:" to projectFullPath
end tell
只需在files
之后添加duplicate
即可复制文件,或使用items
复制文件和文件夹。