« Return to Thread: For-each file

Re: For-each file

by Bugzilla from al@beshenov.ru :: Rate this Message:

Reply to Author | View in Thread


On Friday 14 September 2007 14:42, you wrote:

> Is there a way to make some action for each file in a directory in the file
> system? Like <xsl:for-each select="/myfolder/directory/" or something like
> this?

Of course, no. Firstly, XSL works with more abstract items than a file system.
Secondly, HTTP server with XML and XSL files should not provide file listings
for client side.

You can do such things with some extensions for XSLT processor (if you are
working on local machine). Get file list and then do the xsl:for-each with
document() function. Alternatively (if you are working with user through the
HTTP), you can get and save file listing using some tool separated from the
processor on server side (e.g. Perl script).

--
Alexey Beshenov <al@...>
http://beshenov.ru/

 « Return to Thread: For-each file