Page 1 of 1

Renaming files based on source Tar file pattern

Posted: Thu Apr 14, 2016 6:08 pm
by TaddB
Hello community - I have a scenario where the files retrieved are TAR with pattern: "[constant]-<plant>-[constant]-<timestamp>.tar" and the files within the tar have the pattern: "<operation>-<step>.txt"

I would like to create a combination file name from the container (tar) and extracted files for the destination file name, so after the untar operation, rename the files so they are: <plant>-<timestamp>-<operation>-<step>.txt.

I am unable to determine how to obtain the file name of the TAR and then parse the parts I want (perhaps using a regex) to apply to the untar file group.

Thank you for any advice.

Re: Renaming files based on source Tar file pattern

Posted: Fri Apr 15, 2016 11:22 am
by Support_Rick
Tadd,

The answer to your situation is just a bit of string manipulation.

More than likely, you're retrieving the file based on Date or availability. This means you going to 'get' the file from some location using a wildcard or date filter. Once you have the file locally, we can parse the filename with several attributes. (Name, Name without extension, date, size, last modified date, etc)

So, that gives us the information you need to parse your filename. That's done by functions available to you within the Workflow. So, parsing out values then re-assembling them for renaming of files can be done .. just takes putting in the logic.

This link will show you how to utilize file attributes as an example.