Ruby Examples

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

Ruby
Examples

Quick Start
Unicode
Byte Array
Bz2
Certificates
CSV
Email
Encryption
FTP
HTML Conversion
HTTP
IMAP
MHT
MIME
POP3
RSA
S/MIME
Signatures
SFTP
SMTP
Socket / SSL
Spider
SSH
SSH Key
SSH Tunnel
Tar
HTTP Upload
XML
XMP
Zip

More Examples...
String
Amazon S3
Email Object
DKIM / DomainKey
NTLM
FileAccess
RSS
Atom
Self-Extractor
Service
PPMD
Deflate
Bzip2
DH Key Exchange
DSA
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 for Windows/Linux and Install Instructions

require 'rubygems'
require 'chilkat'

rar = Chilkat::CkRar.new()

#  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.

success = rar.Open("abc123.rar")
if (success != true)
    print rar.lastErrorText() + "\n"
    exit
end

n = rar.get_NumEntries()
for i in 0 .. n - 1

    entry = rar.GetEntryByIndex(i)

    print entry.filename() + "\n";
    print entry.get_UncompressedSize().to_s().to_s() + "\n";
    print entry.get_CompressedSize().to_s().to_s() + "\n";

    if (entry.get_IsDirectory() == true)
        print "(directory)" + "\n";
    end

    if (entry.get_IsReadOnly() == true)
        print "(read-only)" + "\n";
    end

    print "----" + "\n";

end
 

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