Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/corlib/System.IO/FileAttributes.cs')
-rw-r--r--mcs/class/corlib/System.IO/FileAttributes.cs35
1 files changed, 0 insertions, 35 deletions
diff --git a/mcs/class/corlib/System.IO/FileAttributes.cs b/mcs/class/corlib/System.IO/FileAttributes.cs
deleted file mode 100644
index 3f187be6910..00000000000
--- a/mcs/class/corlib/System.IO/FileAttributes.cs
+++ /dev/null
@@ -1,35 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// System.IO.FileAttributes.cs
-//
-// Copyright (C) 2001 Moonlight Enterprises, All Rights Reserved
-//
-// Author: Jim Richardson, develop@wtfo-guru.com
-// Created: Monday, August 13, 2001
-//
-//------------------------------------------------------------------------------
-
-
-namespace System.IO
-{
- [Flags]
- [Serializable]
- public enum FileAttributes : int
- {
- Archive = 0x00020,
- Compressed = 0x00800,
- Device = 0x00040, // Reserved for future use (NOT the w32 value).
- Directory = 0x00010,
- Encrypted = 0x04000, // NOT the w32 value
- Hidden = 0x00002,
- Normal = 0x00080,
- NotContentIndexed = 0x02000,
- Offline = 0x01000,
- ReadOnly = 0x00001,
- ReparsePoint = 0x00400,
- SparseFile = 0x00200,
- System = 0x00004,
- Temporary = 0x00100
- }
-
-}