You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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);
}
}
}
}
What I'm doing wrong ?
The text was updated successfully, but these errors were encountered:
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 ?
The text was updated successfully, but these errors were encountered: