Whatever message this page gives is out now! Go check it out!
<head> <title>List Directory Information</title> </head> <body> <h3>List Directory Information</h3> <cfdirectory directory="c:\inetpub\wwwroot\mine" name="mydirectory" sort="size ASC, name DESC, datelastmodified"> <table cellspacing=1 cellpadding=10> <tr> <th>Name</th> <th>Size</th> <th>Type</th> <th>Modified</th> <th>Attributes</th> <th>Mode</th> </tr> <cfoutput query="mydirectory"> <tr> <td>#mydirectory.name#</td> <td>#mydirectory.size#</td> <td>#mydirectory.type#</td> <td>#mydirectory.dateLastModified#</td> <td>#mydirectory.attributes#</td> <td>#mydirectory.mode#</td> </tr> </cfoutput> </table> </body> </html> |