Chilkat HOME ASP Visual Basic VB.NET C# Visual C++ C MFC Delphi FoxPro Java Perl PHP Python Ruby SQL Server VBScript
|
Open RAR Archive and List ContentsDemonstrates 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. Dim rar As New ChilkatRar ' 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. Dim success As Long success = rar.Open("abc123.rar") If (success <> 1) Then MsgBox rar.LastErrorText Exit Sub End If Dim n As Long Dim i As Long n = rar.NumEntries For i = 0 To n - 1 Dim entry As ChilkatRarEntry Set entry = rar.GetEntryByIndex(i) Text1.Text = Text1.Text & entry.Filename & vbCrLf Text1.Text = Text1.Text & entry.UncompressedSize & vbCrLf Text1.Text = Text1.Text & entry.CompressedSize & vbCrLf If (entry.IsDirectory = 1) Then Text1.Text = Text1.Text & "(directory)" & vbCrLf End If If (entry.IsReadOnly = 1) Then Text1.Text = Text1.Text & "(read-only)" & vbCrLf End If Text1.Text = Text1.Text & "----" & vbCrLf Next |
Need a specific example? Send a request to support@chilkatsoft.com
© 2000-2008 Chilkat Software, Inc. All Rights Reserved.