Skip to contents

This function checks if the specified paths are FIFOs (named pipes) and returns a logical vector indicating the result. Similar to Python's pathlib.Path.is_fifo() method.

Usage

Path_is_fifo(paths)

Arguments

paths

A character vector of file paths.

Value

A logical vector indicating whether each path is a FIFO.

Examples

if (FALSE) {
Path_is_fifo("fifo_pipe")
}