本文介绍了检查文件是否是python中的命名管道(fifo)?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我与命名管道通信,但是我想在打开它之前检查它是否真的是一个命名管道.
I communicate with a named pipe, but I would like to check if it really is a named pipe BEFORE opening it.
我在Google中签入,但是什么也没有,os.path.isfile()
返回False
,我真的需要检查它.
I check in Google but there is nothing, os.path.isfile()
returns False
, and I really need to check it.
推荐答案
您可以尝试:
import stat, os
stat.S_ISFIFO(os.stat(path).st_mode)
这篇关于检查文件是否是python中的命名管道(fifo)?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!