|
apr_filetype_e values for the filetype member of the apr_file_info_t structure - Warning:
- : Not all of the filetypes below can be determined. For example, a given platform might not correctly report a socket descriptor as APR_SOCK if that type isn't well-identified on that platform. In such cases where a filetype exists but cannot be described by the recognized flags below, the filetype will be APR_UNKFILE. If the filetype member is not determined, the type will be APR_NOFILE.
- Enumeration values:
-
APR_NOFILE |
no file type determined |
APR_REG |
a regular file |
APR_DIR |
a directory |
APR_CHR |
a character device |
APR_BLK |
a block device |
APR_PIPE |
a FIFO / pipe |
APR_LNK |
a symbolic link |
APR_SOCK |
a [unix domain] socket |
APR_UNKFILE |
a file of some other unknown type |
|