Skip to content

Instantly share code, notes, and snippets.

@fearthecowboy
Last active October 23, 2015 14:51
Show Gist options
  • Select an option

  • Save fearthecowboy/a8ef0c3250ccf1ef961f to your computer and use it in GitHub Desktop.

Select an option

Save fearthecowboy/a8ef0c3250ccf1ef961f to your computer and use it in GitHub Desktop.
namespace Pinvoke.Kernel32.Flags {
using System;
[Flags]
public enum MoveFile {
[Reference("MOVEFILE_REPLACE_EXISTING")]
ReplaceExisting = 1,
CopyAllowed = 2,
DelayUntilReboot = 4,
WriteThrough = 8
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment