enum file_type: mode_type
File types.
regular = S_IFREG
directory = S_IFDIR
block_device = S_IFBLK
character_device = S_IFCHR
pipe = S_IFIFO
socket = S_IFSOCK
symbolic_link = S_IFLNK
operator<<(std::ostream & out, const file_type & rhs) -> std::ostream &
Print file type as a character, as in ls(1) command.