I have a zip file, with XML and image files inside. I need to extract them, and process them. XML file gets written to a database, image file will be resized and moved to an appropriate folder (based on XML data)
What components do I need to use to achieve all this?
Right now I got tFileUnarchive -iterate-> tFileList, but from there, I don't know what to do. How to split the flow based on the file type?
Hi,
For your job requirement, you can design your job like:
tFileUnarchive
-->OnsubjobOk-->tfilelist_1(xml file)-->tfileinputxml-->t<DB>output
-->Onsubjobok-->
tfilelist_2(
image file
)-->further processing-->tfilecopy(move image file to other place)
Let us know if it is Ok with you.
Best regards
Sabrina