代码
tell application "Finder"
make new folder at "iCloud Drive: Documents" with properties {name:"my Folder"}
end tell
错误消息
错误" Finder收到错误:AppleEvent处理程序失败。"数字-10000
系统概述
Macbook Pro:MacOS Sierra 10.12.6
答案 0 :(得分:0)
iCloud Drive
不是物理磁盘。只需使用标准documents folder
set documentsFolder to path to documents folder
tell application "Finder"
make new folder at documentsFolder with properties {name:"my Folder"}
end tell