Programming Examples

ChilkatHOMEASPVisual BasicVB.NETC#Visual C++CMFCDelphiFoxProJavaPerlPHPPythonRubySQL ServerVBScript

C Examples

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


 

 

 

 

 

 

 

 

FTP XCRC

Demonstrates how to tell Chilkat FTP2 to automatically verify an upload using XCRC. XCRC is an FTP extension supported by most FTP servers. If your FTP server does not support XCRC, then no XCRC command will be sent to verify the upload.

The XCRC command asks the FTP server to send an CRC checksum (hash) for the contents of a file. The client can then verify that the checksum matches the local file. The FTP2 Put* methods automatically do this when the AutoXcrc property is turned on.

Note: In order for the FTP2 component to know whether XCRC is supported by your FTP server, you must have the AutoFeat property turned on (which is the default setting). The AutoFeat property tells the FTP2 component to automatically request the FTP server features via the FEAT command after connecting.

Note: XCRC is new functionality that is present in the pre-release downloads at http://www.chilkatsoft.com/preRelease.asp, or in official new versions dated after 30-Oct-2007. If you have trouble, please contact support@chilkatsoft.com.

Download Chilkat C/C++ Libraries for VC++ 9.0 / Win32

Download Chilkat C/C++ Libraries for VC++ 8.0 / Win32

Download Chilkat C/C++ 64-bit Libraries for VC++ 8.0 / x64

Download Chilkat Visual Studio 2005 C/C++ Libs for Windows Mobile, Pocket PC, SmartPhone, WinCE

Download Chilkat C/C++ Libraries for VC++ 7.0 / Win32

Download Chilkat C/C++ Libraries for VC++ 6.0 / Win32

Download Chilkat C/C++ Libraries for VC++ 6.0, Win 95/98/NT4 Compatible

#include <C_CkFtp2.h>

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

    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.example-code.com");
    CkFtp2_putUsername(ftp,"****");
    CkFtp2_putPassword(ftp,"****");

    //  Turn on the AutoXcrc property:
    CkFtp2_putAutoXcrc(ftp,TRUE);

    //  Turn on session logging.  We'll want to examine it to
    //  see the XCRC command:
    CkFtp2_putKeepSessionLog(ftp,TRUE);

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

    //  Change to the remote directory where the file will be uploaded.
    success = CkFtp2_ChangeRemoteDir(ftp,"junk");
    if (success != TRUE) {
        printf("%s\n",CkFtp2_lastErrorText(ftp));
        return;
    }

    //  Upload a file.

    localFilename = "hamlet.xml";

    remoteFilename = "hamlet.xml";

    success = CkFtp2_PutFile(ftp,localFilename,remoteFilename);
    if (success != TRUE) {
        printf("%s\n",CkFtp2_lastErrorText(ftp));
        return;
    }

    //  If we examine the session log, we'll see the XCRC command:
    printf("%s\n",CkFtp2_sessionLog(ftp));

    CkFtp2_Disconnect(ftp);

    printf("File Uploaded!\n");

    //  Here is the session log showing the XCRC command:

    //  220 Serv-U FTP Server v6.3 for WinSock ready...
    //  .
    //  USER example-code.com
    //  331 User name okay, need password.
    //  .
    //  PASS ****
    //  230 User logged in, proceed.
    //  .
    //  TYPE I
    //  200 Type set to I.
    //  .
    //  SYST
    //  215 UNIX Type: L8
    //  .
    //  FEAT
    //  211-Extension supported
    //   CLNT
    //   MDTM
    //   MDTM YYYYMMDDHHMMSS[+-TZ];filename
    //   SIZE
    //   SITE PSWD;EXEC;SET;INDEX;ZONE;CHMOD;MSG
    //   REST STREAM
    //   XCRC filename;start;end
    //   MODE Z
    //   MLST Type*;Size*;Create;Modify*;Win32.ea*;
    //  211 End
    //  .
    //  CWD junk
    //  250 Directory changed to /junk
    //  .
    //  PORT 192,168,1,103,5,144
    //  200 PORT Command successful.
    //  .
    //  STOR hamlet.xml
    //  150 Opening BINARY mode data connection for hamlet.xml.
    //  226 Transfer complete.
    //  .
    //  XCRC hamlet.xml
    //  250 3C1933BF


    CkFtp2_Dispose(ftp);

    }

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

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