Visual C++ Examples

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

C++ Examples

CkString
Byte Array
Bounced Mail
Bz2
Character Encoding
CSV
DH Key Exchange
DKIM/DomainKeys
Digital Certificates
Digital Signatures
DSA
Email
Email Object
Encryption
FTP
HTML Conversion
HTTP
IMAP
MHT / HTML Email
POP3
RSA
S/MIME
SMTP
Socket
Spider
SSH Key
SSH
SSH Tunnel
SFTP
Tar
Upload
XML
XMP
Zip Compression


More Examples...
Amazon S3
NTLM
FileAccess
RSS
Atom
Self-Extractor
Service
PPMD
Deflate
Bzip2
LZW

 

 

 

 

 

 

 

 

Open RAR Archive and List Contents

Demonstrates how to open a RAR archive and list the contents.

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.

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
#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;
    }

    int n;
    int i;

    n = rar.get_NumEntries();
    for (i = 0; i <= n - 1; i++) {

        CkRarEntry *entry = 0;
        entry = rar.GetEntryByIndex(i);

        printf("%s\n",entry->filename());
        printf("%d\n",entry->get_UncompressedSize());
        printf("%d\n",entry->get_CompressedSize());

        if (entry->get_IsDirectory() == true) {
            printf("(directory)\n");
        }

        if (entry->get_IsReadOnly() == true) {
            printf("(read-only)\n");
        }

        printf("----\n");
        delete entry;
    }

    }

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

Mail Component · .NET Mail Component · XML Parser