#ifndef _NTIOAPI_H
//
// Create/open flags
//
/**
* The file being created or opened is a directory file.
* With this flag, the CreateDisposition parameter must be set to FILE_CREATE, FILE_OPEN, or FILE_OPEN_IF.
* With this flag, other compatible CreateOptions flags include only FILE_SYNCHRONOUS_IO_ALERT,
* FILE_SYNCHRONOUS_IO_NONALERT, FILE_WRITE_THROUGH, FILE_OPEN_FOR_BACKUP_INTENT, and FILE_OPEN_BY_FILE_ID.
*/
#define FILE_DIRECTORY_FILE 0x00000001
View code on GitHubNo description available.