Within an XSLT document, is it possible to loop over a set of files in the current directory?
I have a situation where I have a directory full of xml files that need
From within XSLT I think this will not be possible.
You could pass in all the XML file names to an as a comma separated list and loop over it using recursion and substring-before() and substring-after().