diff --git a/README.md b/README.md index 73813f68..67cba2cd 100644 --- a/README.md +++ b/README.md @@ -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! diff --git a/USAGE.md b/USAGE.md index 1c7b0e12..11d31a9c 100644 --- a/USAGE.md +++ b/USAGE.md @@ -128,14 +128,11 @@ var progress = new Progress(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 + }); } ```