
FTP ls _vs_ FTP from Browser
Well thanks anyway guys. I read a few messages in this group, and the
..vb.controls group, and heard that there was a Service Pack available
(SP3). It apparently fixes a bug with converting the filename to uppercase.
The server I was trying to access was case sensitive.
Did Microsoft send notices about these service pack releases for bug fixes
to their registered users?? I'm registered, but maybe have changed my
address since then... I sure hope so MICROSOFT, I've spent grueling and
painful hours trying to figure MY problem out. Ya think Bill would pay an
invoice if I were to send him one??? hehehe
I'm still curious about question #1 if anyone has thought about it.
Thanks
Mike
Quote:
>I'm having problems trying to 'FTP GET' a file that I can see/download
using
>my browser,
>but FTP returns an error that it can't find the file.
>Sample Code:
> myURL = "ftp://ftp.<ispprovider>.com"
> FTPstmt = "GET /sitesubdirectory/file.ext c:\ftpfile.txt"
> InetFTP.Execute myURL, FTPstmt
> While InetFTP.StillExecuting
> DoEvents
> Wend
> On Error GoTo 0
>Error message received is:
> Error: 12003 200 Type set to I
> 200 Port command successful
> 550 README.TXT: The system cannot find the file specified.
>In note of this, can someone try and explain something strange that I've
>noticed during my debugging; I think this has alot to do with it...
>When using my browser pointing to a given ftp url I see one directory
>structure, but when I use an FTP program (such as the one that comes w/
>Windows95 by typing FTP <url> at the dos command line) pointing to the
same
>url, I see a totally different directory structure.
>1) Why are the two directories different?
>2) Could this be why the "system cannot find the file specified"?
>This url that I'm testing with just happens to be my ISP's ftp site.
>Thanks for any info,
>Mike