I am running a listing of a directory on server. Till a few days back, this code was running perfectly, but now it lists just a few inner directories and gives this error.
Microsoft VBScript runtime error '800a004c'
Path not found
/admin/admin.asp, line 316
The code that I am running is:
For Y = 0 to UBound(AryPop,2)
folder_path = "D:\My_Folder\" & AryPop(0,Y)
count=0
Set fs = Server.CreateObject( "Scripting.FileSystemObject" )
Set folder = fs.GetFolder( folder_path )
FOR EACH file IN folder.files
count=count+1
NEXT
count = trim(count)
SELECT CAse count
Case 1
strMulti = "file"
Case Else
strMulti = "files"
END SELECT
where AryPop is defined as:
set RSconnPop = Server.CreateObject("ADODB.Recordset")
RSconnPop.Open strSQLPop, dbconnPop
Dim AryPop
AryPop = RSconnPop.GetRows()
I tried searching for a solution, but all the solutions suggested don't help me. Please suggest what can I do to fix it.
The folder "D:\My_Folder" exists at the location. The code reads a few directories, and then halts with an error.