<%
Set MyDirectory=Server.CreateObject("Scripting.FileSystemObject")
Set MyFiles=MyDirectory.GetFolder(Server.MapPath("/"))
For Each filefound In MyFiles.files
%>Name: <% Response.Write filefound.Name %> Size: <% Response.Write filefound.Size %> DateCreated: <% Response.Write filefound.DateCreated %> ShortName: <% Response.Write filefound.ShortName %> ShortPath: <% Response.Write filefound.ShortPath %> DateLastAccessed: <% Response.Write filefound.DateLastAccessed %> Type: <% Response.Write filefound.Type %> ParentFolder: <% Response.Write filefound.ParentFolder %> DateLastModified: <% Response.Write filefound.DateLastModified %> Path: <% Response.Write filefound.Path %>
<% Next %>