Hi!

I'm having troubles sending files with the internet transfer control. It converts everything to uppercase, so if I try to send a file with

inet.execute ,"PUT c:\myfile.txt /mydir/myfile.txt"

it tries to store it as

/MYDIR/MYFILE.TXT

Since the ftp server is case sensitive, and /MYDIR doesn't exist (/mydir does), I get the following error:

12003 : 200 Type set to I.
200 PORT command successful.
553 /MYDIR/MYFILE.TXT: No such file or directory.

Any help?

Regards...