123456789101112131415161718192021222324252627282930313233343536 |
- using System;
- namespace SMBLibrary.SMB1
- {
-
-
-
- [Flags]
- public enum ExtendedFileAttributes : uint
- {
- ReadOnly = 0x00000001,
- Hidden = 0x00000002,
- System = 0x00000004,
- Directory = 0x00000010,
- Archive = 0x00000020,
-
-
-
- Normal = 0x00000080,
- Temporary = 0x00000100,
- Sparse = 0x00000200,
- ReparsePoint = 0x00000400,
- Compressed = 0x00000800,
- Offline = 0x00001000,
- NotIndexed = 0x00002000,
- Encrypted = 0x00004000,
- PosixSemantics = 0x01000000,
- BackupSemantics = 0x02000000,
- DeleteOnClose = 0x04000000,
- SequentialScan = 0x08000000,
- RandomAccess = 0x10000000,
- NoBuffering = 0x10000000,
- WriteThrough = 0x80000000,
- }
- }
|