FileAttributes.hx 273 B

12345678910111213141516171819
  1. package cs.system.io;
  2. @:native('System.IO.FileAttributes') extern enum FileAttributes
  3. {
  4. ReadOnly;
  5. Hidden;
  6. System;
  7. Directory;
  8. Archive;
  9. Device;
  10. Normal;
  11. Temporary;
  12. SparseFile;
  13. ReparsePoint;
  14. Compressed;
  15. Offline;
  16. NotContentIndexed;
  17. Encrypted;
  18. }