Defines | |
#define | APR_READ 0x00001 |
#define | APR_WRITE 0x00002 |
#define | APR_CREATE 0x00004 |
#define | APR_APPEND 0x00008 |
#define | APR_TRUNCATE 0x00010 |
#define | APR_BINARY 0x00020 |
#define | APR_EXCL 0x00040 |
#define | APR_BUFFERED 0x00080 |
#define | APR_DELONCLOSE 0x00100 |
#define | APR_XTHREAD 0x00200 |
#define | APR_SHARELOCK 0x00400 |
#define | APR_FILE_NOCLEANUP 0x00800 |
#define | APR_SENDFILE_ENABLED 0x01000 |
|
Append to the end of the file |
|
Open the file in binary mode |
|
Open the file for buffered I/O |
|
Create the file if not there |
|
Delete the file after close |
|
Open should fail if APR_CREATE and file exists. |
|
Do not register a cleanup when the file is opened |
|
Open the file for reading |
|
Advisory flag that this file should support apr_sendfile operation |
|
Platform dependent support for higher level locked read/write access to support writes across process/machines |
|
Open the file and truncate to 0 length |
|
Open the file for writing |
|
Platform dependent tag to open the file for use across multiple threads |