FileAttributes.cs 658 B

12345678910111213141516171819202122232425262728293031323334
  1. //------------------------------------------------------------------------------
  2. //
  3. // System.IO.FileAttributes.cs
  4. //
  5. // Copyright (C) 2001 Moonlight Enterprises, All Rights Reserved
  6. //
  7. // Author: Jim Richardson, [email protected]
  8. // Created: Monday, August 13, 2001
  9. //
  10. //------------------------------------------------------------------------------
  11. namespace System.IO
  12. {
  13. [Flags]
  14. public enum FileAttributes : int
  15. {
  16. Archive,
  17. Compressed,
  18. Device, // Reserved for future use.
  19. Directory,
  20. Encrypted,
  21. Hidden,
  22. Normal,
  23. NotContentIndexed,
  24. Offline,
  25. ReadOnly,
  26. ReparsePoint,
  27. SparseFile,
  28. System,
  29. Temporary
  30. }
  31. }