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