0

I don't want to specify any specific file name in the source or target instead I would like to use a placeholder something like $filename.txt or [filename].txt

filename is a global variable in my operation and I need to move this file between folders.

Thanks.

user1176058
  • 642
  • 1
  • 8
  • 21

1 Answers1

2

You can use the "Archive" operation to move data from one location to another:

Archive Operation

Assign to a global variable

Dynamically name the file

Martijn Pieters
  • 1,048,767
  • 296
  • 4,058
  • 3,343
SeanJB
  • 46
  • 1
  • How can I specify a filename for both the target and source if the filename is not known at the time of creating a source and target? For example, if I want to move a file that was recently processed in a different operation. – user1176058 Jan 18 '17 at 14:47
  • You can simply assign the file name to a global value (as you indicated in your original questions) and then use the global variable in place of the file name in target/source. I'll post screenshots as another response. – SeanJB Jan 19 '17 at 21:01