Sample code for 30+ languages & platforms
Unicode C

Change Current Directory

See more FTP Examples

To change the current remote directory, call ChangeRemoteDir.

Chilkat Unicode C Downloads

Unicode C
#include <C_CkFtp2W.h>

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

    success = FALSE;

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

    ftp = CkFtp2W_Create();

    CkFtp2W_putHostname(ftp,L"ftp.example.com");
    CkFtp2W_putUsername(ftp,L"login");
    CkFtp2W_putPassword(ftp,L"password");

    // Connect and login to the FTP server.
    success = CkFtp2W_Connect(ftp);
    if (success != TRUE) {
        wprintf(L"%s\n",CkFtp2W_lastErrorText(ftp));
        CkFtp2W_Dispose(ftp);
        return;
    }

    // Set the current directory (on the FTP server) to the
    // "orders" subdirectory.  When logging into an FTP account,
    // current remote directory is automatically set to the
    // home directory of the FTP account.  From the FTP client's
    // perspective, it will be "/", but the absolute path on the
    // FTP server might be something like "/home/ftp_users/".
    success = CkFtp2W_ChangeRemoteDir(ftp,L"orders");
    if (success != TRUE) {
        wprintf(L"%s\n",CkFtp2W_lastErrorText(ftp));
        CkFtp2W_Dispose(ftp);
        return;
    }

    success = CkFtp2W_Disconnect(ftp);


    CkFtp2W_Dispose(ftp);

    }