rar5 archive type from RAR5 branch give me error #247

Closed
opened 2026-01-29 22:08:58 +00:00 by claunia · 1 comment
Owner

Originally created by @sorset on GitHub (Oct 13, 2017).

if (CurrentSignatureType == SignatureType.Rar5)
{
throw new ArchiveException("Unknown Rar5 is supported");
}

The problem is that I can not check Signature property outside of library.
Need to implement public property to check .

For example:

if (reader.Signature == Rar5)
return;
else
// do something with my archive in my solution...

Originally created by @sorset on GitHub (Oct 13, 2017). if (CurrentSignatureType == SignatureType.Rar5) { throw new ArchiveException("Unknown Rar5 is supported"); } The problem is that I can not check Signature property outside of library. Need to implement public property to check . For example: if (reader.Signature == Rar5) return; else // do something with my archive in my solution...
Author
Owner

@adamhathcock commented on GitHub (Apr 29, 2018):

RAR5 supported as of https://github.com/adamhathcock/sharpcompress/pull/340 no rar5 decryption though

@adamhathcock commented on GitHub (Apr 29, 2018): RAR5 supported as of https://github.com/adamhathcock/sharpcompress/pull/340 no rar5 decryption though
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/sharpcompress#247