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.

link|improve this question
Internally one folder was moved into another, and hence the error. Fixed. – SonalKhodiyar Jan 26 at 23:36
feedback

closed as too localized by casperOne Jan 27 at 22:34

This question is unlikely to ever help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. See the FAQ for guidance on how to improve it.

Browse other questions tagged or ask your own question.