Automator + AppleScriptでサブフォルダーを作る
7472 ワード
目標
見積書・請求書・発注書/検収書のサブフォルダーを右クリックのプルダウンメニューから一発で作りたい。
環境・アプリ・言語
- OS:macOS Mojave(v10.14.6)
- アプリ:Automator
- 言語:AppleScript
手順概略
- Automator立ち上げ
- 新規作成
- クイックアクションを選択
- ワークフローを選択
- AppleScriptを実行`をドラッグドロップ
- AppleScriptを記述
- 名前をつけて保存
手順詳細
1. Automator立ち上げ
$ open /Applications/Automator.app
or
Applicationsフォルダーから探して立ち上げる。
2. 新規作成
ファイル>新規を選択
3. クイックアクションを選択
クイックアクションを選択して、選択
ボタンを押下
4. ワークフローを選択
ワークフロー:フォルダ
検索対象:Finder.app
を選択
5. AppleScriptを実行`をドラッグドロップ
アクション>ライブラリ>Automatorの中からAppleScriptを実行
をドラッグドロップ
6. AppleScriptを記述
以下AppleScriptをコピペ
↓
tell application "Finder"
try
set currentfolder to (folder of the front window as string)
on error
display dialog "フォルダーに移動して、スクリプトを実行してください。" with icon stop buttons {"Cancel"}
end try
try
make new folder at currentfolder with properties {name:"見積書"}
make new folder at currentfolder with properties {name:"請求書"}
make new folder at currentfolder with properties {name:"発注書・検収書"}
on error
display dialog "すでに作成済みです" with icon stop buttons {"Cancel"}
end try
end tell
7. 名前をつけて保存
名前を付けて保存
実行してみる
- 作りたいディレクトリを右クリック
- 見積書フォルダ作成を選択
- できた\(^o^)/
おまけ
右クリックメニューのサービスで階層になるアイテムの個数を設定する
$ defaults write -g NSServicesMinimumItemCountForContextSubmenu -int 20
$ killall Finder
シンプルに生きたい
Author And Source
この問題について(Automator + AppleScriptでサブフォルダーを作る), 我々は、より多くの情報をここで見つけました https://qiita.com/amishiro/items/478f1c518ee239035ed4著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .