Files
WPinternals/WPinternalsSDK/MoveFileFlags.cs
2021-08-14 11:24:02 +02:00

16 lines
272 B
C#

using System;
namespace WPinternalsSDK
{
[Flags]
public enum MoveFileFlags
{
ReplaceExisting = 1,
CopyAllowed = 2,
DelayUntilReboot = 4,
WriteThrough = 8,
CreateHardLink = 16,
FailIfNotTrackable = 32
}
}