我知道这应该很容易,但我只是找不到它。我们有一个程序可以在Users / Shared /中自动创建一个新文件夹。该文件夹每次都是一个不同的名称。这就是变量。
我需要执行以下操作的文件夹操作:
在Users / Shared /中复制或创建新文件夹时,
在新文件夹中创建(或从其他位置复制)两个新文件夹,一个名为“To”,一个名为“From”。
我尝试“录制”一个,但它没有做任何事。
感谢您的帮助!
答案 0 :(得分:2)
尝试:
on adding folder items to theFolder after receiving droppedItems
repeat with anItem in droppedItems
tell application "System Events" to get kind of (contents of anItem) = "Folder"
if the result then do shell script "mkdir -p " & (quoted form of (POSIX path of anItem)) & "{\"To\",\"From\"}"
end repeat
end adding folder items to