I created a simple job with a rename and move task.
Rename: When a file comes in as "X.txt", rename it to "Y.CSV"
Move: Upload the renamed file to another directory and delete the source file.
But, in this case the file came in as "Y.CSV" which meant that the rename was no longer necessary and it just needed to be uploaded. And for some reason VisualCron deleted the file that did not need to be renamed AND did not move it.
My question: What's the best way to enter a conditional clause so that a rename is only done if necessary, but either way to move the file. Do I have to write a Powershell script?