Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Defines the level of access that a handle has on files.
Syntax
typedef enum HANDLE_ACCESS_OPTIONS {
HAO_NONE = 0,
HAO_READ_ATTRIBUTES = 0x80,
HAO_READ = 0x120089,
HAO_WRITE = 0x120116,
HAO_DELETE = 0x10000
} ;
Constants
HAO_NONE Value: 0 None. |
HAO_READ_ATTRIBUTES Value: 0x80 The handle can be used to read file attributes. |
HAO_READ Value: 0x120089 The handle can be used to read the file. |
HAO_WRITE Value: 0x120116 The handle can be used to write to the file. |
HAO_DELETE Value: 0x10000 The handle can be used to delete the file. |
Requirements
Requirement | Value |
---|---|
Minimum supported client | Windows 10 [desktop apps only] |
Minimum supported server | Windows Server 2016 |
Header | windowsstoragecom.h |