mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-02-04 05:25:00 +00:00
rar5 archive type from RAR5 branch give me error #247
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
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...
@adamhathcock commented on GitHub (Apr 29, 2018):
RAR5 supported as of https://github.com/adamhathcock/sharpcompress/pull/340 no rar5 decryption though