How do I use the current folder name without a path as a variable in automator in Mac?

后端 未结 2 1063
天命终不由人
天命终不由人 2021-02-08 02:58

I am using Mac OSX 10.8.3.

I have a workflow in Automator set up that is as follows:

  1. Ask for Finder Items
  2. Get Folder Contents
  3. Make Sequen
相关标签:
2条回答
  • 2021-02-08 03:19

    This works in testing:

    1. Ask for finder Items - set type to Folders.
    2. Set Value of Variable - this will be the path to the folder taken from action 1.
    3. Run Shell Script - set the Pass input : as argument. And use /usr/bin/basename "$1" as the command line to get the folder name
    4. Set Value of Variable - this will be the folderName of the folder taken from action 3.
    5. Get Value of Variable - set the Variable it obtains the value of to path

      5a. set action 5 to ignore input from the above action 4 - Ctrl + mouse click on the action Title to get the Contextual Menu

    6. Get Folder Contents - get the contents of the folder at the path passed on from Action 5

    7. Rename Finder Items - Set to Make Sequential and new name = the folderName Variable

    enter image description here

    You can add your Move actions after as you wish.

    0 讨论(0)
  • 2021-02-08 03:32

    You can use a Run Shell Script Action, with the following code:

    echo ${1##*/}
    

    and Pass input: set to as arguments.

    enter image description here

    This will filter the passed input, giving only the file basename as output.

    You should put this step before the action that sets FolderName variable.

    0 讨论(0)
提交回复
热议问题