FILELISTDIRECTORY
FILE_LIST_DIRECTORY is a Windows access right defined in the Windows API that permits listing the contents of a directory. It is part of the set of FILE_x rights used with the CreateFile and related functions to control the level of access granted to a file system object. The concatenated form FILELISTDIRECTORY is sometimes seen in code or documentation, but the canonical name in header files like WinNT.h is FILE_LIST_DIRECTORY.
Usage: A process requests this right by including FILE_LIST_DIRECTORY in the desired access mask when opening
Value and semantics: In the Windows headers, FILE_LIST_DIRECTORY has the value 0x0001, and is often bitwise ORed
Notes: In practice, obtaining a directory handle may require additional flags such as FILE_FLAG_BACKUP_SEMANTICS for certain