(ASP) server.mappath showing wrong path. **Resolved**
I am getting all confused here... I am trying to move some files from one directory to another
VB Code:
set objFolder2 = objFS.GetFolder("D:\inetpub\wwwroot\lxr\AutoRes\process")
for each item in objFolder2.Files
strFilePath3 = item.path
strFilePath3 = replace(strFilePath3, "D:\Inetpub\WWWroot\lxr\AutoRes\process\", "")
response.write Server.MapPath(strFilePath3)
objFS.MoveFile Server.MapPath(strFilePath3), "D:\inetpub\wwwroot\lxr\AutoRes\import\"
next
thanks