<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/TR/WD-xsl">

  <xsl:template match="/">
    <html>
      <xsl:apply-templates/>
    </html>
  </xsl:template>

  <xsl:template match="directory">
    <ul>
    <li>
    <xsl:value-of select="directory-name"/>
    </li>
    <xsl:apply-templates/>
    </ul>
  </xsl:template>

  <xsl:template match="file">
    <ul>
    <li>
    <xsl:value-of select="file-name"/>
    </li>
    </ul>
  </xsl:template>

</xsl:stylesheet>