C# Examples

ChilkatHOMEAndroid™ASPVisual BasicVB.NETC#iOS (IPhone)Objective-CC++CUnicode C++Unicode CMFCDelphi DLLDelphi ActiveXFoxProJavaPerlPHP ExtensionPHP ActiveXPythonPowerShellRubySQL ServerVBScript

C# Examples

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


More Examples...
Amazon S3
NTLM
FileAccess
RSS
Atom
String
Byte Array
Self-Extractor
Service
PPMD
Deflate
DH Key Exchange
DSA
Bzip2
LZW

 

 

 

 

 

 

Open RAR Archive and List Contents

Download: Chilkat .NET Assemblies

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.

Chilkat.Rar rar = new Chilkat.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) {
    MessageBox.Show(rar.LastErrorText);
    return;
}

int n;
int i;

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

    Chilkat.RarEntry entry = null;
    entry = rar.GetEntryByIndex(i);

    textBox1.Text += entry.Filename + "\r\n";
    textBox1.Text += entry.UncompressedSize + "\r\n";
    textBox1.Text += entry.CompressedSize + "\r\n";

    if (entry.IsDirectory == true) {
        textBox1.Text += "(directory)" + "\r\n";
    }

    if (entry.IsReadOnly == true) {
        textBox1.Text += "(read-only)" + "\r\n";
    }

    textBox1.Text += "----" + "\r\n";

}

 

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