| 123456789101112131415161718192021222324252627282930313233 |
- //------------------------------------------------------------------------------
- //
- // 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
- {
- public enum FileAttributes
- {
- Archive,
- Compressed,
- Device, // Reserved for future use.
- Directory,
- Encrypted,
- Hidden,
- Normal,
- NotContentIndexed,
- Offline,
- ReadOnly,
- ReparsePoint,
- SparseFile,
- System,
- Temporary
- }
- }
|