Jump to content

FTPConnect and _FtpPutFile isn't working


Recommended Posts

Hi! im trying to create a sc ript that would transfer a file from localhost to the ftp.

however FTPConnect and _FtpPutFile isn't working.

probably i missed some important lines etc.

could you help me? thanks :huh2:

the code is shown below.

note: we didn't require username and password to access the ftp so uname and password was given no value.

#include<ftp.au3>

$__ftp_hWinInetDll = DllOpen( 'wininet.dll' )
If $__ftp_hWinInetDll == -1 Then
    ConsoleWrite( "-- ERROR FROM FTP.au3: Unable to open WinInet.dll" & @LF )
    $__ftp_hWinInetDll = 'wininet.dll'
EndIf

$server = 'ftp://***.***.**.***/'
$username = ''
$pass = ''

$Open = _FTPOpen('MyFTP Control')
$Conn = _FTPConnect($Open, $server, $username, $pass)
$Ftpp = _FtpPutFile($Conn, 'C:\*******\net.txt', '/sample.txt')
$Ftpc = _FTPClose($Open)
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...