I'm using latest library version 0.37.2, at this moment of creating issue.
I have multi volume archive protected by password. That archive contains a subset of other archives, rar files especially.
There is my code:
var folder = @"D:\myfolder";
var rars = Directory.GetFiles(folder, "*.rar");
var pass = "abcdef1230213";
using var archive = RarArchive.Open(rars.Select(File.OpenRead), new SharpCompress.Readers.ReaderOptions { Password = pass });
foreach (var entry in archive.Entries.Where(c => !c.IsDirectory))
{
Console.WriteLine(entry.Key);
if (entry.Key!.EndsWith(".rar"))
{
using var stream = entry.OpenEntryStream();
var r = RarArchive.IsRarFile(stream);
using var subArchive = RarArchive.Open(stream);
if (subArchive.Entries.Count > 0) // here is the exception occurrence
{
foreach (var subEntry in subArchive.Entries.Where(c => !c.IsDirectory))
{
Console.WriteLine(subEntry.Key);
}
}
}
}
Hi,
I'm using latest library version 0.37.2, at this moment of creating issue.
I have multi volume archive protected by password. That archive contains a subset of other archives, rar files especially.
There is my code:
What I'm doing wrong ?