Programming Examples

ChilkatHOMEAndroid™ASPVisual BasicVB.NETC#iOS (IPhone)Objective-CC++CMFCDelphiFoxProJavaPerl
PHP ExtensionPHP ActiveXPythonPowerShellRubySQL ServerVBScript

C Examples

Bounced Mail
Bz2
Certificates/Keys
Charset
CSV
DKIM / DomainKey
Diffie-Hellman
DSA
Email Object
Encryption
FileAccess
FTP
HTML Conversion
HTTP
IMAP
MHT / HTML Email
MIME
NTLM
POP3
RSA
SMTP
Socket
Spider
SSH Key
SSH
SSH Tunnel
SFTP
Tar
Upload
XML
Zip
Amazon S3

 

 

 

 

 

 

 

 

Quote and SendCommand

Demonstrate the Quote and SendCommand methods.

Downloads:

MS Windows Visual C/C++ Libraries
Linux/CentOS C/C++ Libraries
MAC OS X C/C++ Libraries
Solaris C/C++ Libraries
C++ Builder Libraries
FreeBSD C++ Libraries
HP-UX C++ Libraries
BlackBerry QNX C++ Libraries
#include <C_CkFtp2.h>

void ChilkatSample(void)
    {
    HCkFtp2 ftp;
    BOOL success;
    const char * serverResponse;

    ftp = CkFtp2_Create();

    //  Any string unlocks the component for the 1st 30-days.
    success = CkFtp2_UnlockComponent(ftp,"Anything for 30-day trial");
    if (success != TRUE) {
        printf("%s\n",CkFtp2_lastErrorText(ftp));
        return;
    }

    CkFtp2_putHostname(ftp,"www.myftpserver.com");
    CkFtp2_putUsername(ftp,"****");
    CkFtp2_putPassword(ftp,"****");

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

    //  Tell the FTP object to keep an in-memory session log
    //  so we can see the commands sent to the server,
    //  and the responses received back.
    CkFtp2_putKeepSessionLog(ftp,TRUE);

    //  Change the current remote directory via the Quote method:
    success = CkFtp2_Quote(ftp,"CWD junk");
    if (success != TRUE) {
        printf("%s\n",CkFtp2_lastErrorText(ftp));
        return;
    }

    //  Move back up
    //  In this case, ChangeRemoteDir sends "CWD .." to the FTP server.
    success = CkFtp2_ChangeRemoteDir(ftp,"..");
    if (success != TRUE) {
        printf("%s\n",CkFtp2_lastErrorText(ftp));
        return;
    }

    //  Do the same via the SendCommand method where the
    //  raw FTP server response is returned:

    serverResponse = CkFtp2_sendCommand(ftp,"CWD junk");
    if (serverResponse == 0 ) {
        printf("%s\n",CkFtp2_lastErrorText(ftp));
    }
    else {
        printf("%s\n",serverResponse);
    }

    CkFtp2_Disconnect(ftp);

    printf("Session Log:\n");
    printf("%s\n",CkFtp2_sessionLog(ftp));


    CkFtp2_Dispose(ftp);

    }

Need a specific example? Send a request to support@chilkatsoft.com

© 2000-2010 Chilkat Software, Inc. All Rights Reserved.