Visual C++ Examples

ChilkatHOMEASPVisual BasicVB.NETC#Visual C++CMFCDelphiFoxProJavaPerlPHPPythonRubySQL ServerVBScript

Visual C++ Examples

CkString
Byte Array
Bounced Mail
Character Encoding
Digital Certificates
Digital Signatures
Email
Encryption
FTP
HTML-to-XML
HTTP
IMAP
MHT / HTML Email
RSA Encryption
S/MIME
Socket
Spider
Tar
Upload
XML
XMP
Zip Compression


More Examples...
Email Object
POP3
SMTP
RSS
Atom
Self-Extractor
Service
PPMD
Deflate
DH Key Exchange
DSA

Unreleased...
Bzip2
LZW
Bz2
Icon

 

 

 

 

 

 

 

 

Extract a Single File from a RAR Archive

Demonstrates how to open a RAR archive and extract a single file at a time.

Note: The Chilkat RAR ActiveX objects are included in the "Chilkat Zip" ActiveX download. The RAR functionality contained within ChilkatZip2.dll is freeware, however, the Chilkat Zip, GZip, and .Z functionality is not freeware.

The Chilkat RAR for .NET and C++ are bundled in downloads that contain all Chilkat classes (both free and non-free). Make sure you select the download that matches your .NET Framework or VC++ version (6/7/8).

If running on x64, download the ActiveX, .NET, or C++ builds marked specifically for x64.

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

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

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

#include <CkRar.h>
#include <CkRarEntry.h>

void ChilkatSample(void)
    {
    CkRar rar;

    //  Note: The Chilkat RAR functionality only provides the ability
    //  to open, list, and "unrar" (i.e. extract) RAR archives.  It does
    //  not provide the ability to create RAR archives.

    //  Also, the Chilkat RAR functionality is free.  It does not
    //  require a license to use indefinitely.

    bool success;

    success = rar.Open("abc123.rar");
    if (success != true) {
        printf("%s\n",rar.lastErrorText());
        return;
    }

    //  Entries within the RAR can be accessed by name or by index.
    CkRarEntry *entry = 0;
    entry = rar.GetEntryByName("HelloWorld123.txt");
    if (entry == 0 ) {
        printf("%s\n",rar.lastErrorText());
    }
    else {
        success = entry->Unrar("c:/temp/unrarDest");
        if (success == false) {
            printf("%s\n",rar.lastErrorText());
        }
        else {
            printf("Success.\n");
        }

    }

    delete entry;

    //  Alternatively, get an entry by index.  The first entry
    //  is at index 0.
    entry = rar.GetEntryByIndex(0);
    if (entry == 0 ) {
        printf("%s\n",rar.lastErrorText());
    }
    else {
        success = entry->Unrar("c:/temp/unrarDest");
        if (success == false) {
            printf("%s\n",rar.lastErrorText());
        }
        else {
            printf("Success.\n");
        }

    }

    delete entry;
    }

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

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

Mail Component · .NET Mail Component · XML Parser