Sample code for 30+ languages & platforms
Unicode C++

Append Bytes to a Remote FTP File (BinData)

See more FTP Examples

Demonstrates the Chilkat Ftp2.AppendFileBd method, which appends the bytes in a BinData to a remote file. The first argument is the remote filename and the second is the BinData. No conversion is performed.

Background: The binary append: add in-memory bytes to the end of a remote file without an intermediate local file and without any encoding or line-ending translation. It is the right choice for growing a binary file — concatenating captured data, for instance — where exact bytes matter.

Chilkat Unicode C++ Downloads

Unicode C++
#include <CkFtp2W.h>
#include <CkBinDataW.h>

void ChilkatSample(void)
    {
    bool success = false;

    //  Demonstrates the Ftp2.AppendFileBd method, which appends the bytes in a BinData to a remote
    //  file.  The 1st argument is the remote filename and the 2nd is the BinData.

    CkFtp2W ftp;

    ftp.put_Hostname(L"ftp.example.com");
    ftp.put_Username(L"myFtpLogin");

    //  Normally you would not hard-code the password in source.  You should instead obtain it
    //  from an interactive prompt, environment variable, or a secrets vault.
    ftp.put_Password(L"myPassword");

    success = ftp.Connect();
    if (success == false) {
        wprintf(L"%s\n",ftp.lastErrorText());
        return;
    }

    CkBinDataW bd;
    success = bd.LoadFile(L"qa_data/more_data.bin");
    if (success == false) {
        wprintf(L"%s\n",bd.lastErrorText());
        return;
    }

    success = ftp.AppendFileBd(L"data/collected.bin",bd);
    if (success == false) {
        wprintf(L"%s\n",ftp.lastErrorText());
        return;
    }

    wprintf(L"Appended %d bytes.\n",bd.get_NumBytes());

    success = ftp.Disconnect();
    if (success == false) {
        wprintf(L"%s\n",ftp.lastErrorText());
        return;
    }
    }