FILE_DIRECTORY_FILE - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
#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

#endif

View code on GitHub

NtDoc

No description available.