ASP List Folder (List Directory) This the tutorial/example asp script how to list file in directory.
ShotDev Focus:
- ASP & List file in directory.
Example
asp_list_files.asp
<% Option Explicit %> <html> <head> <title>ShotDev.Com Tutorial</title> </head> <body> <% Dim objFSO,objFolder,Vol Set objFSO = Server.CreateObject("Scripting.FileSystemObject") set objFolder = objFSO.GetFolder(Server.MapPath("MyFiles")) For Each Vol in objFolder.Files Response.write(Vol.Name&"<br>") Next Set objFolder = Nothing Set objFSO = Nothing %> </body> </html>
Create a asp file and save to path root-path/myasp/
Run
http://localhost/myasp/asp_list_files.asp
Screenshot