It's the "Copy/move list of files" command. You will need to produce a list a files first using the "List files" action, then use the column with the list of files in the "Copy/move list of files" command.
I am missing something.
The Copy/Move list of files - only allows you to list the folder destination - not what the new file’s name should be.
This is how I used it:
Source - is complete path i.e. …\network1\Blue.csv
The destination - only a folder i.e. …\network2
I cannot see how I can use the Top folder + new name here
Then I rename it:
You refer to the “list file” action - I have a list of the files.
Not sure how to copy from full path to path + new name as the action only asks for folder destination.
This solution works, but I wanted 1 step in stead of 2
In this case, it should be two operations. One - copy the files to another folder. The other one - rename them in that folder. Both operations can be done with the "File command" action. You will need a lookup table with old file names and new file names (after renaming) for the "Rename a list of files" command to work.
$input for such table will have values in this order: a11, a12, a13, a21, a22, a23 etc.
I suppose you could separate them in the PowerShell script, minding that for example for two-column table odd-numbered $input items are source file names, even-numbered are destinations but this is extremely brittle way that would break if input columns are reordered or any extra columns are added to the input table.
I would suggest to adhere to @dgudkov 's advice of using File command action for two-step renaming.