std::experimental::filesystem::is_fifo
Min standard notice:
Header: <experimental/filesystem>
Checks if the given file status or path corresponds to a FIFO or pipe file.
# Declarations
bool is_fifo( file_status s );
(filesystem TS)
bool is_fifo( const path& p );
(filesystem TS)
bool is_fifo( const path& p, error_code& ec );
(filesystem TS)
# Parameters
s: file status to checkp: path to queryec: error code to modify in case of errors
# Return value
true if the given path or file status corresponds to a FIFO file.