updates from review

This commit is contained in:
Adam Hathcock
2026-01-07 16:18:27 +00:00
parent e038aea694
commit fbdefc17c1
2 changed files with 5 additions and 8 deletions

View File

@@ -34,7 +34,7 @@ Hi everyone. I hope you're using SharpCompress and finding it useful. Please giv
Please do not email me directly to ask for help. If you think there is a real issue, please report it here.
zt#z# Want to contribute?
## Want to contribute?
I'm always looking for help or ideas. Please submit code or email with ideas. Unfortunately, just letting me know you'd like to help is not enough because I really have no overall plan of what needs to be done. I'll definitely accept code submissions and add you as a member of the project!

View File

@@ -128,14 +128,11 @@ var progress = new Progress<ProgressReport>(report =>
using (var archive = RarArchive.Open("archive.rar", new ReaderOptions { Progress = progress })) // Must be solid Rar or 7Zip
{
if (archive.IsSolid || archive.Type == ArchiveType.SevenZip)
archive.WriteToDirectory(@"D:\output", new ExtractionOptions()
{
archive.WriteToDirectory(@"D:\output", new ExtractionOptions()
{
ExtractFullPath = true,
Overwrite = true
});
}
ExtractFullPath = true,
Overwrite = true
});
}
```