網頁

2021年1月30日 星期六

Automator:依檔案清單大量找檔案並拷貝

將程式流程製作成Automator,就不用在終端機下指令,對一班使用這來說會比較簡單。





1.於程式庫中選 工具程式 -> 執行AppleScript

on run {input, parameters}
    set theDialogText to "選擇 list 檔案"
    display dialog theDialogText
    --> Result: {button returned:"OK"}
    return input
end run

2.於程式庫中選 檔案和檔案夾 -> 要求Finder項目
類型選擇"檔案"






3.於程式庫中選 工具程式 -> 執行AppleScript

 on run {input, parameters}
    set theDialogText to "選擇 pic 目錄"
    display dialog theDialogText
    --> Result: {button returned:"OK"}
    return input
end run

4.於程式庫中選 檔案和檔案夾 -> 要求Finder項目
類型選擇"檔案夾"


5.於程式庫中選 工具程式 ->執行Shell工序指令
傳遞輸入選擇"作為引數使用",就是剛剛選擇檔案和目錄傳遞到此當輸入


執行畫面:



接著會執行script,然後將找到的檔案copy到桌面。

沒有留言:

張貼留言