Jump to content

How to use that udf to upload ftp?


E1M1
 Share

Recommended Posts

http://www.autoitscript.com/forum/index.php?showtopic=94212&st=0&p=677003&hl=ftp&fromsearch=1&#entry677003

there's 2 examples, butho I can use it to upload file to servar?

thanks

I modified example script, but it just dont work

#include <FTP.au3>
#include <Array.au3>;only used for this test file to dispay the return value of the _FTPFileFind* functions

const $Host = 'host.com'
const $Login = 'user@host.com' ;I know user@host.com is stupid name but I have it.
const $Password = 'passwd'

local $hFtp, $hSession, $hFind, $tFind

_FTP_Startup()

$hFtp = _FTP_Open('MyFtp')
$hSession = _FTP_Connect($hFtp, $Host, $Login, $Password)

_FTP_DeleteFile($hSession,"public_html/example.exe")
   
_FTP_Disconnect($hSession)
_FTP_Close($hFtp)

_FTP_Shutdown()
Edited by E1M1

edited

Link to comment
Share on other sites

#Include <FTP.au3>

Global Const $Host = ''
Global Const $Login = ''
Global Const $Password = ''

_FTP_Startup()
$hFtp = _FTP_Open('MyFtp')
$hSession = _FTP_Connect($hFtp, $Host, $Login, $Password)
_FTP_PutFile($hSession, 'readme.txt', 'readme.txt')
_FTP_Disconnect($hSession)
_FTP_Close($hFtp)
_FTP_Shutdown()

Edited by Yashied
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...