asp file system object
- by sushant
i am using this code to access files and folders.
<%@ Language=VBScript %<%
option explicit
dim sRoot, sDir, sParent, objFSO, objFolder, objFile, objSubFolder, sSize
%
<%
sRoot = "D:Raghu"
sDir = Request("Dir")
sDir = sDir & "\"
Response.Write "" & sDir & "" & vbCRLF
Set objFSO =…