mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-02-06 05:27:05 +00:00
[PR #72] [MERGED] Extract Options And Total Sizes #825
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?
📋 Pull Request Information
Original PR: https://github.com/adamhathcock/sharpcompress/pull/72
Author: @hodm
Created: 7/26/2015
Status: ✅ Merged
Merged: 7/27/2015
Merged by: @adamhathcock
Base:
master← Head:master📝 Commits (1)
b0c514dExtract Options And Total Sizes📊 Changes
14 files changed (+380 additions, -39 deletions)
View changed files
📝
SharpCompress.Test/ArchiveTests.cs(+49 -0)📝
SharpCompress.Test/SevenZip/SevenZipArchiveTests.cs(+5 -0)📝
SharpCompress.Test/TestBase.cs(+69 -0)📝
SharpCompress/Archive/AbstractArchive.cs(+9 -3)📝
SharpCompress/Archive/IArchive.cs(+10 -2)📝
SharpCompress/Archive/IArchiveEntry.Extensions.cs(+34 -0)📝
SharpCompress/Archive/SevenZip/SevenZipArchive.cs(+9 -0)📝
SharpCompress/Common/Entry.cs(+11 -2)📝
SharpCompress/Common/ExtractOptions.cs(+10 -0)📝
SharpCompress/Common/IEntry.cs(+1 -0)📝
SharpCompress/Common/SevenZip/ArchiveReader.cs(+160 -32)📝
SharpCompress/Common/SevenZip/CStreamSwitch.cs(+6 -0)📝
SharpCompress/Common/SevenZip/DataReader.cs(+2 -0)📝
SharpCompress/Common/SevenZip/SevenZipEntry.cs(+5 -0)📄 Description
Fixed TotalSize For 7z
added TotalUncompressSize Tested for 7z
this enables to show progress for the entire archive
Added 2 Extract Options: PreserveFileTime And PreserveAttributes.
Put All the Log Command under DEBUG Condition.
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.