Subject: Re: [xsl] directory listing extension From: "andrew welch" <andrew.j.welch@xxxxxxxxx> Date: Thu, 20 Jul 2006 12:20:49 +0100 |
> > Is there an extension that given a directory will return a > list of file paths from recursively traversing the directory,
All extensions are processor-dependent.
eg: > > index.html > images/logo.gif > > ...or will I need to write my own extension? >
You may be able to call the underlying system methods directly:
xmlns:File="java:java.io.File" <xsl:variable name="dir" select="File:new($directory)"/> <xsl:variable name="files" select="File:list($dir)"/> <xsl:for-each select="$files">...
Thanks, sounds promising but I'm having an early problem: any idea why $files would be empty:
<xsl:variable name="dir" select="File:new($directory)"/> <xsl:variable name="files" select="File:list($dir)" as="xs:string+"/>
Current Thread |
---|
|
<- Previous | Index | Next -> |
---|---|---|
RE: [xsl] directory listing extensi, Michael Kay | Thread | Re: [xsl] directory listing extensi, andrew welch |
[xsl] Creating Sequences, Jeff Sese | Date | Re: [xsl] Creating Sequences, David Carlisle |
Month |