Jump to content

FTP


LOULOU
 Share

Recommended Posts

With this synthax

$server = 'xx.xxxxx.xx'

$username = 'xxxxxx'

$pass = 'xxxxxx'

$dllhandle = DllOpen('wininet.dll')

$Open = _FTPOpen('MyFTP Control')

$Conn = _FTPConnect($Open, $server, $username, $pass)

$Ftpp = _FtpPutFile($Conn,"c:\cib2.txt", '/images_exemple/cib2.txt')

If @error Then

msgbox(0, "Error", @error)

endif

$Ftpc = _FTPClose($Open)

DllClose($dllhandle)

I get an error -1

Is someone have had the same problem and can help Me ?

Link to comment
Share on other sites

With this synthax

I get an error -1

Is someone have had the same problem and can help Me ?

Did you check for @error on _FTPConnect() before trying the transfer? And does the /images_example/ directory already exist on the remote root?

<_<

Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
Link to comment
Share on other sites

Did you check for @error on _FTPConnect() before trying the transfer? And does the /images_example/ directory already exist on the remote root?

<_<

Did you check for @error on _FTPConnect() Yes the result is not an error

/images_example/ directory already exist on the remote root? Yes the directory exist

I have alkl verify in FTPO from wouter, all the function works well except this function

Maybe i forget something

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...