Collect Assets Based on XML
Posted: Sat Jan 23, 2016 10:23 am
Hi,
I would like to place assets in the correct folder based on the information within a XML file. I've one folder that contains the XML files and one folder that contains the PDF assets. Within the XML the asset names and order numbers are set:
So asset 'hello.pdf' needs to be placed into folder '2340' and asset 'bye.pdf' into folder '2341'. I tried using XML pickup element, but I don't know how to walk through all the order numbers.
Regards, Sjoerd
I would like to place assets in the correct folder based on the information within a XML file. I've one folder that contains the XML files and one folder that contains the PDF assets. Within the XML the asset names and order numbers are set:
Code: Select all
<Order>
<OrderNumber>2340</OrderNumber>
<Asset>hello.pdf</Asset>
</Order>
<Order>
<OrderNumber>2341</OrderNumber>
<Asset>bye.pdf</Asset>
</Order>
Regards, Sjoerd