有没有办法在 PyFileSystem 中使用命名管道?

Is there a way to work with named pipes in PyFileSystem?

有没有办法在 PyFileSystem 中创建和使用命名管道?我在 docs.

中没有看到对 fifopipe 的引用

目前没有。虽然可以实现 FS.pipe 方法,但它只能与 Linux 文件系统一起使用。不清楚它应该在其他支持的文件系统上做什么。

如果您想在 OSFS 中创建命名管道,您可以使用 FS.getsyspath 获取 syspath 并使用 os.mkfifo 创建管道。