Download as pdf or txt
Download as pdf or txt
You are on page 1of 2

Python | os.

mkfifo() method
OS module in Python provides functions for interacting with the operating system. OS
comes under Python’s standard utility modules. This module provides a portable way of
using operating system dependent functionality.

os.mkfifo() method in Python is used to create a FIFO (a named pipe) named path with the
specified mode.

FIFOs are named pipe which can be accessed like other regular files. This method only
create FIFO but don’t open it and the created FIFO does exist until they are deleted. FIFOs
are generally us as rendezvous between client and “server type processes.

Syntax: os.mkfifo(path, mode = 0o666, *, dir_fd = None)

Parameters:

path: A path-like object representing the file system path. It can be a string or
bytes object representing a file path.

mode (optional): A numeric value representing the mode of the FIFO (named
pipe) to be created. The default value of mode parameter is 0o666 (octal).

dir_fd (optional): This is a file descriptor referring to a directory.

Note: The ‘*’ in parameter list indicates that all following parameters (Here in
our case ‘dir_fd’) are keyword-only parameters and they can be provided
using their name, not as a positional parameter.

Return type: This method does not return any value.


Code: Use of os.mkfifo() method

Output:

FIFO named './mypipe' is created successfully.

You might also like