Click to See Complete Forum and Search --> : Need Help Please!


ASPDvlpr
September 6th, 2001, 07:59 AM
I am trying to automate cuteftp pro with scripts written in vbscript. My problem is, I need to upload all the files from a local directory into another directory on a remote site. I have used *.*, *.jpg and nothing works. It keeps telling me that file or directory not found. I t doesnt seem to understand *.* or *.jpg If someone can help it would be very appreciated. Someone suggested using Dir but i get an error when using that like Type Mismatch Dir
Some code:

strPath = "J:\Carsdata\385005"
strFile = Dir(strPath & "\*.jpg")

Do until strFile = ""
MySite.Upload strPath & "\" & strFile
strFile = Dir
Loop

If I Use MySite.Upload "J:\Carsdata\385002\ It uploads the whole folder and the files. I need to upload just the files into another directory.

Thanks!