hihi..

i got the FTP connection going and able to download images from the FTP server if the image's file name is fully spelled like "0001.jpg" or "0002.bmp"

What can i do to download the image if i only key in the file name excluding the extentsion file type like .jpg, .bmp etc.. the reason is that i have many image file which sometimes make me forget the file type on that image.

i have tried this code, but fails..
VB Code:
  1. [COLOR=Blue]negative[/COLOR]
  2. inetftp.execute  "Get " & _
  3.        "0001.*" & " " & "c:\0001.jpg"
  4.  
  5. [COLOR=Blue]positive[/COLOR]
  6. inetftp.execute  "Get " & _
  7.        "0001.bmp" & " " & "c:\0001.jpg"

???
ocw