Files
PEASS-ng/winPEAS/winPEASexe/winPEAS/3rdParty/AlphaFS/Filesystem/CopyMoveResult.cs
makikvues bcd52764ba - added alphaFS as 3rd party library
- PrintVulnLeakedHandlers wrapped in try/catch
- removed commented out code in SearchHelper.cs
- added check for empty config in YamlConfigHelper
2023-07-30 11:01:20 +02:00

172 lines
6.2 KiB
C#

/* Copyright (C) 2008-2018 Peter Palotas, Jeffrey Jangli, Alexandr Normuradov
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
using System;
using System.ComponentModel;
using System.Diagnostics;
using System.Diagnostics.CodeAnalysis;
namespace Alphaleonis.Win32.Filesystem
{
/// <summary>Class for CopyMoveResult that contains the results for the Copy or Move action.</summary>
/// <remarks>Normally there is no need to manually instantiate and/or populate this class.</remarks>
[Serializable]
public sealed class CopyMoveResult
{
#region Private Fields
[NonSerialized] internal readonly Stopwatch Stopwatch;
#endregion // Private Fields
#region Constructors
/// <summary>Initializes a CopyMoveResult instance for the Copy or Move action.</summary>
/// <param name="source">Indicates the full path to the source file or directory.</param>
/// <param name="destination">Indicates the full path to the destination file or directory.</param>
private CopyMoveResult(string source, string destination)
{
Source = source;
Destination = destination;
IsCopy = true;
Retries = 0;
Stopwatch = new Stopwatch();
}
internal CopyMoveResult(CopyMoveArguments cma, bool isFolder) : this(cma.SourcePath, cma.DestinationPath)
{
IsEmulatedMove = cma.EmulateMove;
IsCopy = cma.IsCopy;
IsDirectory = isFolder;
TimestampsCopied = cma.CopyTimestamps;
}
internal CopyMoveResult(CopyMoveArguments cma, bool isFolder, string source, string destination) : this(source, destination)
{
IsEmulatedMove = cma.EmulateMove;
IsCopy = cma.IsCopy;
IsDirectory = isFolder;
TimestampsCopied = cma.CopyTimestamps;
}
#endregion // Constructors
#region Properties
/// <summary>Indicates the duration of the Copy or Move action.</summary>
public TimeSpan Duration
{
get { return TimeSpan.FromMilliseconds(Stopwatch.Elapsed.TotalMilliseconds); }
}
/// <summary>Indicates the destination file or directory.</summary>
public string Destination { get; private set; }
/// <summary>The error code encountered during the Copy or Move action.</summary>
/// <value>0 (zero) indicates success.</value>
public int ErrorCode { get; internal set; }
/// <summary>The error message from the <see cref="ErrorCode"/> that was encountered during the Copy or Move action.</summary>
/// <value>A message describing the error.</value>
[SuppressMessage("Microsoft.Design", "CA1065:DoNotRaiseExceptionsInUnexpectedLocations")]
public string ErrorMessage { get { return new Win32Exception(ErrorCode).Message; } }
/// <summary>When <c>true</c> indicates that the Copy or Move action was canceled.</summary>
/// <value><c>true</c> when the Copy/Move action was canceled. Otherwise <c>false</c>.</value>
public bool IsCanceled { get; internal set; }
/// <summary>When <c>true</c> the action was a Copy, Move otherwise.</summary>
/// <value><c>true</c> when the action was a Copy. Otherwise a Move action was performed.</value>
public bool IsCopy { get; private set; }
/// <summary>Gets a value indicating whether this instance represents a directory.</summary>
/// <value><c>true</c> if this instance represents a directory; otherwise, <c>false</c>.</value>
public bool IsDirectory { get; private set; }
/// <summary>Indicates the Move action used a fallback of Copy + Delete actions.</summary>
public bool IsEmulatedMove { get; private set; }
/// <summary>Gets a value indicating whether this instance represents a file.</summary>
/// <value><c>true</c> if this instance represents a file; otherwise, <c>false</c>.</value>
public bool IsFile { get { return !IsDirectory; } }
/// <summary>When <c>true</c> the action was a Move, Copy otherwise.</summary>
/// <value><c>true</c> when the action was a Move. Otherwise a Copy action was performed.</value>
public bool IsMove { get { return !IsCopy; } }
/// <summary>The total number of retry attempts.</summary>
public long Retries { get; internal set; }
/// <summary>Indicates the source file or directory.</summary>
public string Source { get; private set; }
/// <summary>Indicates that the source date and timestamps have been applied to the destination file system objects.</summary>
public bool TimestampsCopied { get; private set; }
/// <summary>The total number of bytes copied.</summary>
public long TotalBytes { get; internal set; }
/// <summary>The total number of bytes copied, formatted as a unit size.</summary>
public string TotalBytesUnitSize
{
get { return Utils.UnitSizeToText(TotalBytes); }
}
/// <summary>The total number of files copied.</summary>
public long TotalFiles { get; internal set; }
/// <summary>The total number of folders copied.</summary>
public long TotalFolders { get; internal set; }
#endregion // Properties
}
}