1234567891011121314151617181920212223242526272829 |
- using System;
- namespace SMBLibrary
- {
- [Flags]
- public enum FileSystemAttributes : uint
- {
- CaseSensitiveSearch = 0x0001,
- CasePreservedNamed = 0x0002,
- UnicodeOnDisk = 0x0004,
- PersistentACLs = 0x0008,
- FileCompression = 0x0010,
- VolumeQuotas = 0x0020,
- SupportsSparseFiles = 0x0040,
- SupportsReparsePoints = 0x0080,
- SupportsRemoteStorage = 0x0100,
- VolumeIsCompressed = 0x8000,
- SupportsObjectIDs = 0x00010000,
- SupportsEncryption = 0x00020000,
- NamedStreams = 0x00040000,
- ReadOnlyVolume = 0x00080000,
- SequentialWriteOnce = 0x00100000,
- SupportsTransactions = 0x00200000,
- SupportsHardLinks = 0x00400000,
- SupportsExtendedAttributes = 0x00800000,
- SupportsOpenByFileID = 0x01000000,
- SupportsUSNJournal = 0x02000000,
- }
- }
|