MCPcopy Create free account
hub / github.com/RT-Thread/env-windows / S_ISFIFO

Function S_ISFIFO

tools/python-3.11.9-amd64/Lib/stat.py:66–68  ·  view source on GitHub ↗

Return True if mode is from a FIFO (named pipe).

(mode)

Source from the content-addressed store, hash-verified

64 return S_IFMT(mode) == S_IFREG
65
66def S_ISFIFO(mode):
67 """Return True if mode is from a FIFO (named pipe)."""
68 return S_IFMT(mode) == S_IFIFO
69
70def S_ISLNK(mode):
71 """Return True if mode is from a symbolic link."""

Callers 1

is_fifoMethod · 0.90

Calls 1

S_IFMTFunction · 0.85

Tested by

no test coverage detected