Sample code for 30+ languages & platforms
C

FTP Upload / Download to StringBuilder

Demonstrate how to upload from a Chilkat StringBuilder object, and download into a StringBuilder object.

Chilkat C Downloads

C
#include <C_CkFtp2.h>
#include <C_CkStringBuilder.h>

void ChilkatSample(void)
    {
    BOOL success;
    HCkFtp2 ftp;
    HCkStringBuilder sbA;
    BOOL bIncludeBOM;
    const char *remoteFilename;
    HCkStringBuilder sbB;
    BOOL bCaseSensitive;

    success = FALSE;

    //  This example assumes Chilkat Ftp2 to have been previously unlocked.
    //  See Unlock Ftp2 for sample code.

    ftp = CkFtp2_Create();

    CkFtp2_putHostname(ftp,"www.my-ftp-server.com");
    CkFtp2_putUsername(ftp,"mFtpLogin");
    CkFtp2_putPassword(ftp,"myFtpPassword");

    //  Connect to the FTP server.
    success = CkFtp2_ConnectOnly(ftp);
    if (success != TRUE) {
        printf("%s\n",CkFtp2_lastErrorText(ftp));
        CkFtp2_Dispose(ftp);
        return;
    }

    //  Authenticate with the FTP server.
    success = CkFtp2_LoginAfterConnectOnly(ftp);
    if (success != TRUE) {
        printf("%s\n",CkFtp2_lastErrorText(ftp));
        CkFtp2_Dispose(ftp);
        return;
    }

    sbA = CkStringBuilder_Create();
    CkStringBuilder_LoadFile(sbA,"qa_data/hamlet.xml","utf-8");

    //  Upload the contents of sbA to the FTP server.
    bIncludeBOM = FALSE;
    remoteFilename = "hamletFromSb.xml";
    success = CkFtp2_PutFileSb(ftp,sbA,"utf-8",bIncludeBOM,remoteFilename);
    if (success != TRUE) {
        printf("%s\n",CkFtp2_lastErrorText(ftp));
        CkFtp2_Dispose(ftp);
        CkStringBuilder_Dispose(sbA);
        return;
    }

    //  Download...
    sbB = CkStringBuilder_Create();
    success = CkFtp2_GetFileSb(ftp,remoteFilename,"utf-8",sbB);
    if (success != TRUE) {
        printf("%s\n",CkFtp2_lastErrorText(ftp));
        CkFtp2_Dispose(ftp);
        CkStringBuilder_Dispose(sbA);
        CkStringBuilder_Dispose(sbB);
        return;
    }

    //  Verify that sbA and sbB have the exact same contents.
    printf("size of sbA: %d\n",CkStringBuilder_getLength(sbA));
    bCaseSensitive = TRUE;
    if (CkStringBuilder_ContentsEqualSb(sbA,sbB,bCaseSensitive) == TRUE) {
        printf("Contents are equal. Success.\n");
    }
    else {
        printf("Contents are NOT equal.  Failed.\n");
    }

    CkFtp2_Disconnect(ftp);


    CkFtp2_Dispose(ftp);
    CkStringBuilder_Dispose(sbA);
    CkStringBuilder_Dispose(sbB);

    }