- From: Alexey Beshenov <al@beshenov.ru>
- Date: Fri, 14 Sep 2007 18:09:13 +0400
- To: axdmoraes <alexmoraes@gmail.com>
- Cc: xsl-editors@w3.org
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@beshenov.ru> http://beshenov.ru/
Received on Friday, 14 September 2007 14:09:31 UTC