Chilkat VB.NET RarEntry Class Reference
RarEntry
Represents a single entry (file or directory) in a RAR archive. This class is only available in Chilkat implementations for the Windows operating system.
Object Creation
(C#)
Chilkat.RarEntry obj = new Chilkat.RarEntry();
(VB.NET)
Dim obj As New Chilkat.RarEntry()
Properties
CompressedSize As Integer (ReadOnly)
The compressed size in bytes of the file within the RAR archive. Directories have a compressed size of 0.
Crc As Integer (ReadOnly)
The CRC checksum.
Filename As String (ReadOnly)
The filename, which can include a relative directory path.
IsDirectory As Boolean (ReadOnly)
true if the entry is a directory, false if it is a file.
IsReadOnly As Boolean (ReadOnly)
true if the file permissions are set to read-only after extraction. Otherwise set to false for read-write.
LastErrorHtml As String (ReadOnly)
Error information in HTML format for the last method called.
LastErrorText As String (ReadOnly)
Error information in plain-text format for the last method called.
LastErrorXml As String (ReadOnly)
Error information in XML format for the last method called.
LastModified As Date (ReadOnly)
The last-modified date/time of the fille. When extracting, the file's last-mod date/time is set to this value.
UncompressedSize As Integer (ReadOnly)
The size (in bytes) of the file when uncompressed.
Methods
Function SaveLastError(ByVal filename As String) As Boolean
Saves the last error information to an XML formatted file.
Function Unrar(ByVal dirPath As String) As Boolean
Extracts the file to the dirPath specified.
|