Set objFile = ObjFSO.GetFile(strPhysicalPath)
strPhysicalPath is the actual directory and file name on the server. For example "D:\WebSites\index.htm". It can be derived from Server.MapPath(strURLPath) where strURLPath might be "http://www.mipsdla.com/index.htm" (i think: at least /index.htm works)
objFile can now do:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN" <HTML> <HEAD> <TITLE>Chapter 11 Example - Display Directory</TITLE> </HEAD> <BODY> <% Dim strPathInfo, strPhysicalPath strPathInfo = Resuest.ServerVariables("PATH_INFO") strPhysicalPath = Server.MapPath(strPathInfo) Dim objFSO, objFile, objFileItem, objFolder, objFolderContent8 Set objFSO = CreateObject("Scripting.FileSystemObject") Set objFile = objFSO.GetFile(strPhysicalPath) Set objFolder = objFile.ParentFolder Set objFolderContents = objFolder.Files %> <TABLE cellpadding=5> <TR align=center><TH align=left>File Name</TH><TH>File Size</TH><TH>Last Modified</TH></TR> <% For Each objFileItem in objFolderContents Response.Write "<TR><TD align=left>" Response.Write objFileItem.Name Response.Write "</TD><TD align=right>" Response.Write objFileItem.Size Response.Write "</TD><TD align=right>" Response.Write objFileItem.DateLastModified Response.Write "</TD></TR>" Next %> </TABLE> <BODY> </HTML>
file: /Techref/language/asp/vbs/vbscript/objFile.htm, 2KB, , updated: 1998/10/29 11:19, local time: 2025/5/7 11:17,
3.138.101.237:LOG IN
|
©2025 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions? <A HREF="http://www.piclist.com/Techref/language/asp/vbs/vbscript/objFile.htm"> language asp vbs vbscript objFile</A> |
Did you find what you needed? |
![]() o List host: MIT, Site host massmind.org, Top posters @none found - Page Editors: James Newton, David Cary, and YOU! * Roman Black of Black Robotics donates from sales of Linistep stepper controller kits. * Ashley Roll of Digital Nemesis donates from sales of RCL-1 RS232 to TTL converters. * Monthly Subscribers: Gregg Rew. on-going support is MOST appreciated! * Contributors: Richard Seriani, Sr. |
Welcome to www.piclist.com! |
.