using System; namespace SharpCompress.Common { [Flags] public enum ExtractOptions { None, /// /// overwrite target if it exists /// Overwrite, /// /// extract with internal directory structure /// ExtractFullPath, } }