gpt4 book ai didi

python - 检查路径是否是 Python 2.7 中的套接字

转载 作者:太空狗 更新时间:2023-10-29 20:50:05 26 4
gpt4 key购买 nike

Python 2.7 中判断路径是否为套接字的最佳方法是什么?

os.path具有是... directories 的功能, normal fileslinks . stat模块提供一些 S_IS... 功能,如 S_ISSOCK(mode)我用作

import os, stat

path = "/path/to/socket"
mode = os.stat(path).st_mode
isSocket = stat.S_ISSOCK(mode)

print "%s is socket: %s" % (path, isSocket)

这是首选方式吗?

最佳答案

好吧,这很简单并且有效,所以我将其作为规范方式。

关于python - 检查路径是否是 Python 2.7 中的套接字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17877296/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com