Xbase++
Xbase++
Append to Existing File on FTP Server
See more FTP Examples
Uploads a file to the FTP server. If the remote file (on the FTP server) does not already exist, it is created. Otherwise the uploaded file is appended to the remote file.Chilkat Xbase++ Downloads
LOCAL nSuccess
LOCAL oFtp
LOCAL cLocalFilePath
LOCAL cRemoteFilename
nSuccess := 0
// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
oFtp := CreateObject("Chilkat.Ftp2")
oFtp:Hostname := "ftp.myftpserver.com"
oFtp:Username := "myUsername"
oFtp:Password := "myPassword"
// Connect to the FTP server.
nSuccess := oFtp:ConnectOnly()
IF (nSuccess != 1)
? oFtp:LastErrorText
oFtp:destroy()
RETURN
ENDIF
// Authenticate with the FTP server.
nSuccess := oFtp:LoginAfterConnectOnly()
IF (nSuccess != 1)
? oFtp:LastErrorText
oFtp:destroy()
RETURN
ENDIF
cLocalFilePath := "/someDirectory/hamlet.xml"
cRemoteFilename := "hamlet.xml"
// Upload to the FTP server, creating the file if it does not yet exist
// on the FTP server, or appending to the remote file if it already exists.
nSuccess := oFtp:AppendFile(cLocalFilePath, cRemoteFilename)
IF (nSuccess != 1)
? oFtp:LastErrorText
oFtp:destroy()
RETURN
ENDIF
oFtp:Disconnect()
? "Success."
oFtp:destroy()