I am getting all confused here... I am trying to move some files from one directory to another
thanksVB 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




Reply With Quote