[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: directory listing extension

Subject: Re: directory listing extension
From: "andrew welch" <andrew.j.welch@xxxxxxxxx>
Date: Thu, 20 Jul 2006 12:20:49 +0100
Re:  directory listing extension
On 7/20/06, Michael Kay <mike@xxxxxxxxxxxx> wrote:
>
> 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+"/>

There are definitely files in the directory I'm passing in....

Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.