Mac Automator:批量创建子文件夹
Mac Automator: Mass-create Subfolders
我正在尝试使用 Automator 获取一堆以前创建的文件夹并在每个文件夹中创建两个新文件夹,一个 "Originals" 文件夹和一个 "Scans" 文件夹。我希望能够拖动或 select 需要子文件夹的文件夹,然后自动执行 运行 操作。
我尝试同时执行操作和服务来添加子文件夹,但是当我 select 多个文件夹时,它只 运行 一次。
这是我到目前为止所做的截图...
尝试将工作流另存为应用程序:
将应用程序保存到您的桌面,然后您可以随时将文件夹放在那里。
这是一个 AppleScript,当导出为应用程序时,它可以作为 Droplet 使每个文件夹中的所需文件夹落在其上:
on open droppings
repeat with everyDrop in droppings
if (info for everyDrop)'s folder is true then
--make two folders
tell application "Finder"
make new folder at (everyDrop as text) with properties {name:"Originals"}
make new folder at (everyDrop as text) with properties {name:"Scans"}
end tell
end if
end repeat
end open
on run
display dialog "Drop some folders here to add Originals and Scans folders" buttons {"Aye Aye"} default button "Aye Aye"
end run
我正在尝试使用 Automator 获取一堆以前创建的文件夹并在每个文件夹中创建两个新文件夹,一个 "Originals" 文件夹和一个 "Scans" 文件夹。我希望能够拖动或 select 需要子文件夹的文件夹,然后自动执行 运行 操作。
我尝试同时执行操作和服务来添加子文件夹,但是当我 select 多个文件夹时,它只 运行 一次。
这是我到目前为止所做的截图...
尝试将工作流另存为应用程序:
将应用程序保存到您的桌面,然后您可以随时将文件夹放在那里。
这是一个 AppleScript,当导出为应用程序时,它可以作为 Droplet 使每个文件夹中的所需文件夹落在其上:
on open droppings
repeat with everyDrop in droppings
if (info for everyDrop)'s folder is true then
--make two folders
tell application "Finder"
make new folder at (everyDrop as text) with properties {name:"Originals"}
make new folder at (everyDrop as text) with properties {name:"Scans"}
end tell
end if
end repeat
end open
on run
display dialog "Drop some folders here to add Originals and Scans folders" buttons {"Aye Aye"} default button "Aye Aye"
end run