Thanks Gabe..
Here it is, I hope the format is OK.
What I dream of it doing is creating a directory list control in which will display folders and then the user will be able to upload/download files.
Sort of like Windows Explorer...
Right now, I'm just using a textarea
We all have dreams..
-------------------------------------------
<%@ LANGUAGE="VBSCRIPT" %>
<%
'--- Module: DIRWALKR.ASP
'---
'---
Option Explicit
%>
<HTML>
<HEAD>
<TITLE>Directory Walk</TITLE>
</HEAD>
<BODY BGCOLOR="#ffffff">
<H2><CENTER>
FileManager Recursive Directory Walk
</CENTER></H2>
<CENTER>
<%
Dim sDirectory
Dim sFont
Dim sEFont
'---
'--- Change these settings to customize this example
'---
sDirectory = Session("FILE_ROOT"

sFont = "<FONT SIZE=""1"" FACE=""arial"">"
'---
'--- End of customized settings
'---
sEFont = "</FONT>"
Sub ShowDirectory (sDirectory)
'--- This will show a nested set of tables containing the directory hierarchy.
Dim oFM
Dim oFolder
Dim oSubFolders
Dim oSubFolders2
Dim oSubFolder
Dim oFiles
Dim oFiles2
Dim oFile
Set oFM = Server.CreateObject("IRC.FileManager" )
Set oFolder = oFM.GetFolder(sDirectory)
Set oSubFolders = oFolder.SubFolders
Set oFiles = oFolder.Files
If (oSubFolders.Count > 0) Or (oFiles.Count >0)Then
Response.Write("<TABLE WIDTH=""100%"" BORDER=""0"">"
For each oSubFolder in oSubFolders
Response.Write ("<TR>"

%>
<TEXTAREA rows=2 cols=20 id=textarea1 name=textarea1>
<%=Response.Write (oSubFolder.name)%>
</TEXTAREA>
<%
'Response.Write ("<TD>" & sFont & oSubFolder.name & sEFont & "</TD>"
Response.Write ("<TD> </TD>"

Response.Write ("</TR>" & vbCrLf)
'--- Does the subdirectory contain more directories or files?
Set oSubFolders2 = oSubFolder.SubFolders
Set oFiles2 = oSubFolder.Files
If (oSubFolders2.Count > 0) Or (oFiles2.Count > 0) Then
Response.Write ("<TR><TD VALIGN=""TOP""><IMG SRC=""dir.gif"" ALIGN=""LEFT""></TD><TD>"

ShowDirectory(oSubFolder.ParentFolder & "\" & oSubFolder.name)
Response.Write (" </TD></TR>" & vbCrLf)
End If
Set oSubFolders2 = nothing
Set oFiles2 = nothing
Next
For each oFile in oFiles
Response.Write ("<TR>"

Response.Write ("<TD>" & sFont & oFile.Name & sEFont & "</TD>"

Response.Write ("</TR>" & vbCrLf)
Next
Response.Write("</TABLE>"
End If
Set oSubFolder = nothing
Set oFiles = nothing
Set oFolder = nothing
Set oFM = nothing
End Sub
ShowDirectory(sDirectory)
%>
</CENTER>
</BODY>
</HTML>