Just a comment
[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         [Serializable]
17         public enum FileAttributes : int
18         {
19                 Archive = 0x00020,
20                 Compressed = 0x00800, 
21                 Device = 0x00040, // Reserved for future use (NOT the w32 value). 
22                 Directory = 0x00010,
23                 Encrypted = 0x04000, // NOT the w32 value
24                 Hidden = 0x00002,
25                 Normal = 0x00080,
26                 NotContentIndexed = 0x02000,
27                 Offline = 0x01000,
28                 ReadOnly = 0x00001,
29                 ReparsePoint = 0x00400,
30                 SparseFile = 0x00200,
31                 System = 0x00004,
32                 Temporary = 0x00100
33
34                 //
35                 // This flag is used internall by Mono to make it Executable
36                 //
37                 // Executable = 0x80000000
38         }
39
40 }