DirConstants.au3 1.0 KB

1234567891011121314151617181920
  1. #include-once
  2. ; #INDEX# =======================================================================================================================
  3. ; Title .........: Dir_Constants
  4. ; AutoIt Version : 3.3.14.5
  5. ; Language ......: English
  6. ; Description ...: Constants to be included in an AutoIt v3 script when using Dir functions.
  7. ; Author(s) .....: Valik, Gary Frost, ...
  8. ; ===============================================================================================================================
  9. ; #CONSTANTS# ===================================================================================================================
  10. Global Const $DDL_ARCHIVE = 0x00000020
  11. Global Const $DDL_DIRECTORY = 0x00000010
  12. Global Const $DDL_DRIVES = 0x00004000
  13. Global Const $DDL_EXCLUSIVE = 0x00008000
  14. Global Const $DDL_HIDDEN = 0x00000002
  15. Global Const $DDL_READONLY = 0x00000001
  16. Global Const $DDL_READWRITE = 0x00000000
  17. Global Const $DDL_SYSTEM = 0x00000004
  18. ; ===============================================================================================================================