FTP Object
 
Description
Simple example to upload a file to an FTP server.
 
Example
 
Sub Main
 
Dim success As Long
 
ftp.Hostname = "www.example-code.com"
ftp.Username = "***"
ftp.Password = "***"
 
'  Use Passive mode.
ftp.Passive = 1
 
'  Connect and login to the FTP server.
success = ftp.Connect()
If (success <> 1) Then
    MsgBox ftp.LastErrorText
    Exit Sub
End If
 
'  Change to the remote directory where the file will be uploaded.
success = ftp.ChangeRemoteDir("junk")
If (success <> 1) Then
    MsgBox ftp.LastErrorText
    Exit Sub
End If
 
'  Upload a file.
Dim localFilename As String
localFilename = "hamlet.xml"
Dim remoteFilename As String
remoteFilename = "hamlet.xml"
 
success = ftp.PutFile(localFilename,remoteFilename)
If (success <> 1) Then
    MsgBox ftp.LastErrorText
    Exit Sub
End If
 
ftp.Disconnect
 
MsgBox "File Uploaded!"
 
 
End Sub