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