mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-02-14 13:35:38 +00:00
41 lines
1.1 KiB
C#
41 lines
1.1 KiB
C#
using System;
|
|
|
|
namespace SharpCompress.Common;
|
|
|
|
public class ExtractionOptions
|
|
{
|
|
/// <summary>
|
|
/// overwrite target if it exists
|
|
/// </summary>
|
|
public bool Overwrite { get; set; }
|
|
|
|
/// <summary>
|
|
/// extract with internal directory structure
|
|
/// </summary>
|
|
public bool ExtractFullPath { get; set; }
|
|
|
|
/// <summary>
|
|
/// preserve file time
|
|
/// </summary>
|
|
public bool PreserveFileTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// preserve windows file attributes
|
|
/// </summary>
|
|
public bool PreserveAttributes { get; set; }
|
|
|
|
/// <summary>
|
|
/// Delegate for writing symbolic links to disk.
|
|
/// sourcePath is where the symlink is created.
|
|
/// targetPath is what the symlink refers to.
|
|
/// </summary>
|
|
public delegate void SymbolicLinkWriterDelegate(string sourcePath, string targetPath);
|
|
|
|
public SymbolicLinkWriterDelegate WriteSymbolicLink = (sourcePath, targetPath) =>
|
|
{
|
|
Console.WriteLine(
|
|
$"Could not write symlink {sourcePath} -> {targetPath}, for more information please see https://github.com/dotnet/runtime/issues/24271"
|
|
);
|
|
};
|
|
}
|