Hello,
I have as an input parameter a list of ids separated by "|".
For example: 1|2|4
Next I have a directory with some zip files:
1.zip, 2.zip, 3,zip., 4,zip, 5,zip
As a result I would like to get only files which have names that are in the input list and have it all zipped to the result.zip file:
result.zip
Â
---Â
|Â
|_1.zip|_2.zip
|_4.zip
I came to the point where I used attribute splitter and I have a list of those Ids but I have no idea what to do next. Can you please help me with that?
Thanks!