DosAttrs.php 703 B

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. namespace PhpZip\Constants;
  3. /**
  4. * Interface DosAttrs.
  5. */
  6. interface DosAttrs
  7. {
  8. /** @var int DOS File Attribute Read Only */
  9. const DOS_READ_ONLY = 0x01;
  10. /** @var int DOS File Attribute Hidden */
  11. const DOS_HIDDEN = 0x02;
  12. /** @var int DOS File Attribute System */
  13. const DOS_SYSTEM = 0x04;
  14. /** @var int DOS File Attribute Label */
  15. const DOS_LABEL = 0x08;
  16. /** @var int DOS File Attribute Directory */
  17. const DOS_DIRECTORY = 0x10;
  18. /** @var int DOS File Attribute Archive */
  19. const DOS_ARCHIVE = 0x20;
  20. /** @var int DOS File Attribute Link */
  21. const DOS_LINK = 0x40;
  22. /** @var int DOS File Attribute Execute */
  23. const DOS_EXE = 0x80;
  24. }