Ok, I can do this:
Code:
 Inet1.Execute, "PUT C:\file1.text Upload/file2.text"
But what if I don't know the name of the file to uploaded? The name is contained in a variable, and "PUT.." doesn't allow variables, as far as I can tell. If I do
Code:
 Inet1.Execute, "PUT file1 Upload/file2
it will look for the file "file1" on my system. It doesnt look for the string contained in the variable. How do i do this?