FileAttributes.cs 642 B

123456789101112131415161718192021222324252627282930313233
  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. public enum FileAttributes
  14. {
  15. Archive,
  16. Compressed,
  17. Device, // Reserved for future use.
  18. Directory,
  19. Encrypted,
  20. Hidden,
  21. Normal,
  22. NotContentIndexed,
  23. Offline,
  24. ReadOnly,
  25. ReparsePoint,
  26. SparseFile,
  27. System,
  28. Temporary
  29. }
  30. }