Sample code for 30+ languages & platforms
C

Connect and Log In to an FTP Server

See more FTP Examples

Demonstrates the Chilkat Ftp2.Connect method, which connects to the server and authenticates in a single call. It takes no arguments and uses the Hostname, Port, Username, and Password properties.

Background: Connect is the one-call path that covers the whole handshake: it opens the TCP connection (through any configured proxy), negotiates TLS if enabled, reads the server greeting, and sends USER/PASS to log in. For most applications this is all that is needed. Use ConnectOnly plus LoginAfterConnectOnly instead when you need to do something between connecting and authenticating — such as inspecting the greeting or choosing credentials based on it.

Chilkat C Downloads

C
#include <C_CkFtp2.h>

void ChilkatSample(void)
    {
    BOOL success;
    HCkFtp2 ftp;

    success = FALSE;

    //  Demonstrates the Ftp2.Connect method, which connects to the server and authenticates in one
    //  call.  It takes no arguments and uses the Hostname, Port, Username, and Password properties.

    ftp = CkFtp2_Create();

    //  The FTP server to connect to.  Port defaults to 21 for FTP.
    CkFtp2_putHostname(ftp,"ftp.example.com");
    CkFtp2_putPort(ftp,21);

    //  The login credentials.
    CkFtp2_putUsername(ftp,"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.
    CkFtp2_putPassword(ftp,"myPassword");

    //  Connect negotiates any configured proxy and TLS, receives the greeting, and logs in.
    success = CkFtp2_Connect(ftp);
    if (success == FALSE) {
        printf("%s\n",CkFtp2_lastErrorText(ftp));
        CkFtp2_Dispose(ftp);
        return;
    }

    printf("Connected and logged in.\n");

    success = CkFtp2_Disconnect(ftp);
    if (success == FALSE) {
        printf("%s\n",CkFtp2_lastErrorText(ftp));
        CkFtp2_Dispose(ftp);
        return;
    }



    CkFtp2_Dispose(ftp);

    }