Class RarArchiveLoadOptions
Class RarArchiveLoadOptions
Le nom : Aspose.Zip.Rar Assemblée: Aspose.Zip.dll (25.5.0)
Options avec lesquelles Aspose.Zip.Rar. RarArchive est chargé d’un fichier comprimé.
public class RarArchiveLoadOptions
Inheritance
object ← RarArchiveLoadOptions
I membri ereditari
object.GetType() , object.MemberwiseClone() , object.ToString() , object.Equals(object?) , object.Equals(object?, object?) , object.ReferenceEquals(object?, object?) , object.GetHashCode()
Constructors
RarArchiveLoadOptions()
public RarArchiveLoadOptions()
Properties
DecryptionPassword
Riceve o impone la password per decodificare le entrate e i nomi di entrate.
public string DecryptionPassword { get; set; }
Valore di proprietà
Examples
È possibile fornire una password di crittografia una volta sull’estrazione di archivio.
using (FileStream fs = File.OpenRead("encrypted_archive.rar"))
{
using (var extracted = File.Create("extracted.bin"))
{
using (RarArchive archive = new RarArchive(fs, new ArchiveLoadOptions() { DecryptionPassword = "p@s$" }))
{
using (var decompressed = archive.Entries[0].Open())
{
byte[] b = new byte[8192];
int bytesRead;
while (0 < (bytesRead = decompressed.Read(b, 0, b.Length)))
extracted.Write(b, 0, bytesRead);
}
}
}
}
Vedi anche
RarArchiveEntry . Open ( string )