Sample code for 30+ languages & platforms
Tcl

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 Tcl Downloads

Tcl

load ./chilkat.dll

set success 0

# This example requires the Chilkat API to have been previously unlocked.
# See Global Unlock Sample for sample code.

set ftp [new_CkFtp2]

CkFtp2_put_Hostname $ftp "ftp.myftpserver.com"
CkFtp2_put_Username $ftp "myUsername"
CkFtp2_put_Password $ftp "myPassword"

# Connect to the FTP server.
set success [CkFtp2_ConnectOnly $ftp]
if {$success != 1} then {
    puts [CkFtp2_lastErrorText $ftp]
    delete_CkFtp2 $ftp
    exit
}

# Authenticate with the FTP server.
set success [CkFtp2_LoginAfterConnectOnly $ftp]
if {$success != 1} then {
    puts [CkFtp2_lastErrorText $ftp]
    delete_CkFtp2 $ftp
    exit
}

set localFilePath "/someDirectory/hamlet.xml"
set remoteFilename "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.
set success [CkFtp2_AppendFile $ftp $localFilePath $remoteFilename]
if {$success != 1} then {
    puts [CkFtp2_lastErrorText $ftp]
    delete_CkFtp2 $ftp
    exit
}

CkFtp2_Disconnect $ftp

puts "Success."

delete_CkFtp2 $ftp