mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-02-16 13:35:28 +00:00
19 lines
370 B
C#
19 lines
370 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,
|
|
}
|
|
}
|