65 lines
2.2 KiB
C#
65 lines
2.2 KiB
C#
using System;
|
|
using SharpCompress.Common.Rar.Headers;
|
|
|
|
namespace SharpCompress.Common.Rar
|
|
{
|
|
public abstract class RarEntry : Entry
|
|
{
|
|
internal abstract FileHeader FileHeader { get; }
|
|
|
|
/// <summary>
|
|
/// As the V2017 port isn't complete, add this check to use the legacy Rar code.
|
|
/// </summary>
|
|
internal bool IsRarV3 => FileHeader.CompressionAlgorithm == 29 || FileHeader.CompressionAlgorithm == 36;
|
|
|
|
/// <summary>
|
|
/// The File's 32 bit CRC Hash
|
|
/// </summary>
|
|
public override long Crc => FileHeader.FileCrc;
|
|
|
|
/// <summary>
|
|
/// The path of the file internal to the Rar Archive.
|
|
/// </summary>
|
|
public override string Key => FileHeader.FileName;
|
|
|
|
public override string LinkTarget => null;
|
|
|
|
/// <summary>
|
|
/// The entry last modified time in the archive, if recorded
|
|
/// </summary>
|
|
public override DateTime? LastModifiedTime => FileHeader.FileLastModifiedTime;
|
|
|
|
/// <summary>
|
|
/// The entry create time in the archive, if recorded
|
|
/// </summary>
|
|
public override DateTime? CreatedTime => FileHeader.FileCreatedTime;
|
|
|
|
/// <summary>
|
|
/// The entry last accessed time in the archive, if recorded
|
|
/// </summary>
|
|
public override DateTime? LastAccessedTime => FileHeader.FileLastAccessedTime;
|
|
|
|
/// <summary>
|
|
/// The entry time whend archived, if recorded
|
|
/// </summary>
|
|
public override DateTime? ArchivedTime => FileHeader.FileArchivedTime;
|
|
|
|
/// <summary>
|
|
/// Entry is password protected and encrypted and cannot be extracted.
|
|
/// </summary>
|
|
public override bool IsEncrypted => FileHeader.IsEncrypted;
|
|
|
|
/// <summary>
|
|
/// Entry is password protected and encrypted and cannot be extracted.
|
|
/// </summary>
|
|
public override bool IsDirectory => FileHeader.IsDirectory;
|
|
|
|
public override bool IsSplitAfter => FileHeader.IsSplitAfter;
|
|
|
|
public override string ToString()
|
|
{
|
|
return string.Format("Entry Path: {0} Compressed Size: {1} Uncompressed Size: {2} CRC: {3}",
|
|
Key, CompressedSize, Size, Crc);
|
|
}
|
|
}
|
|
} |