-
Notifications
You must be signed in to change notification settings - Fork 1
/
WinFileFlagsAndAttributes.cs
30 lines (28 loc) · 1.02 KB
/
WinFileFlagsAndAttributes.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/*
* PiSearch - https://github.com/JoshKeegan/PiSearch
* WinFileFlagsAndAttributes - File Flags and attributes used by the Windows API when opening/creating a file
* For a full list of possible values, see http://msdn.microsoft.com/en-us/library/windows/desktop/aa363858%28v=vs.85%29.aspx
* By Josh Keegan 03/01/2014
*/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace winfileio
{
public enum WinFileFlagsAndAttributes : uint
{
FILE_FLAG_BACKUP_SEMANTICS = 0x02000000,
FILE_FLAG_DELETE_ON_CLOSE = 0x04000000,
FILE_FLAG_NO_BUFFERING = 0x20000000,
FILE_FLAG_OPEN_NO_RECALL = 0x00100000,
FILE_FLAG_OPEN_REPARSE_POINT = 0x00200000,
FILE_FLAG_OVERLAPPED = 0x40000000,
FILE_FLAG_POSIX_SEMANTICS = 0x0100000,
FILE_FLAG_RANDOM_ACCESS = 0x10000000,
FILE_FLAG_SESSION_AWARE = 0x00800000,
FILE_FLAG_SEQUENTIAL_SCAN = 0x08000000,
FILE_FLAG_WRITE_THROUGH = 0x80000000,
}
}