Chilkat
HOME
Android™
ASP
Visual Basic
VB.NET
C#
iOS (IPhone)
Objective-C
C++
C
MFC
Delphi
FoxPro
Java
Perl
PHP Extension
PHP ActiveX
Python
PowerShell
Ruby
SQL Server
VBScript
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. set rar = CreateObject("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. success = rar.Open("abc123.rar") If (success <> 1) Then MsgBox rar.LastErrorText WScript.Quit End If ' Entries within the RAR can be accessed by name or by index. Set entry = rar.GetEntryByName("HelloWorld123.txt") If (entry Is Nothing ) Then MsgBox rar.LastErrorText Else success = entry.Unrar("c:/temp/unrarDest") If (success = 0) Then MsgBox rar.LastErrorText Else MsgBox "Success." End If End If ' Alternatively, get an entry by index. The first entry ' is at index 0. Set entry = rar.GetEntryByIndex(0) If (entry Is Nothing ) Then MsgBox rar.LastErrorText Else success = entry.Unrar("c:/temp/unrarDest") If (success = 0) Then MsgBox rar.LastErrorText Else MsgBox "Success." End If End If |
© 2000-2010 Chilkat Software, Inc. All Rights Reserved.