| 12345678910111213141516171819202122232425262728293031323334 |
- //------------------------------------------------------------------------------
- //
- // System.IO.FileAttributes.cs
- //
- // Copyright (C) 2001 Moonlight Enterprises, All Rights Reserved
- //
- // Author: Jim Richardson, [email protected]
- // Created: Monday, August 13, 2001
- //
- //------------------------------------------------------------------------------
- namespace System.IO
- {
- [Flags]
- public enum FileAttributes : int
- {
- Archive,
- Compressed,
- Device, // Reserved for future use.
- Directory,
- Encrypted,
- Hidden,
- Normal,
- NotContentIndexed,
- Offline,
- ReadOnly,
- ReparsePoint,
- SparseFile,
- System,
- Temporary
- }
- }
|