* AttributeUseage.cs: Should define AttributeUsageAttribute.
[mono.git] / mcs / class / corlib / System.IO / FileAttributes.cs
1 //------------------------------------------------------------------------------
2 // 
3 // System.IO.FileAttributes.cs 
4 //
5 // Copyright (C) 2001 Moonlight Enterprises, All Rights Reserved
6 // 
7 // Author:         Jim Richardson, develop@wtfo-guru.com
8 // Created:        Monday, August 13, 2001 
9 //
10 //------------------------------------------------------------------------------
11
12
13 namespace System.IO
14 {
15         [Flags]
16         public enum FileAttributes
17         {
18                 Archive,
19                 Compressed, 
20                 Device, // Reserved for future use. 
21                 Directory,
22                 Encrypted,
23                 Hidden,
24                 Normal,
25                 NotContentIndexed,
26                 Offline,
27                 ReadOnly,
28                 ReparsePoint,
29                 SparseFile,
30                 System,
31                 Temporary 
32         }
33
34 }