Finished refactoring to SharpCompress.

This commit is contained in:
Joseph Milazzo 2021-03-22 13:29:24 -05:00
parent 16bc83b3c3
commit d543511131
6 changed files with 331 additions and 120 deletions

View file

@ -5,12 +5,10 @@ namespace API.Interfaces.Services
{
public interface IArchiveService
{
bool ArchiveNeedsFlattening(ZipArchive archive);
void ExtractArchive(string archivePath, string extractPath);
int GetNumberOfPagesFromArchive(string archivePath);
byte[] GetCoverImage(string filepath, bool createThumbnail = false);
bool IsValidArchive(string archivePath);
string GetSummaryInfo(string archivePath);
}
}