Files
sharpcompress/SharpCompress/Common/ExtractOptions.cs
hodm b0c514d87c Extract Options And Total Sizes
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.
2015-07-26 23:36:28 +03:00

30 lines
604 B
C#

using System;
namespace SharpCompress.Common
{
[Flags]
public enum ExtractOptions
{
None,
/// <summary>
/// overwrite target if it exists
/// </summary>
Overwrite,
/// <summary>
/// extract with internal directory structure
/// </summary>
ExtractFullPath,
/// <summary>
/// preserve file time
/// </summary>
PreserveFileTime,
/// <summary>
/// preserve windows file attributes
/// </summary>
PreserveAttributes,
}
}