I have to pass multiple input xml files and generate multiple xml files as output.
If 'm having 3 files as 'File1.xml', 'File2.xml' and 'File3.xml', I need to copy the full content of those xml's and also add a node to each xml and then display the output files as 'File1_op.xml', 'File2_op.xml' and 'File3_op.xml'. The output files will have a extra node added like
<Product>45896</Product>
I can't pass the file names as static, because it may change. So I need to pass the directory itself and process all the xml files in that particular directory.
Is this possible in xslt? Any help please.