在 Python 中检索模块的路径
要检测模块内的更改,确定要从中接收通知的目录至关重要。本文探讨了在 Python 中获取模块路径的方法。
方法 1:利用 file 属性
模块的 file 属性包含其 .pyc 文件的路径。虽然这很方便,但它可能并不总是准确表示所有系统上模块的实际文件路径。
import a_module print(a_module.__file__)
方法 2:使用 os.path.abspath 和 os.path.dirname
要获取模块文件的绝对路径,可以组合os.path.abspath 和 file:
import os path = os.path.abspath(a_module.__file__)
或者,要检索模块的目录,请使用 os.path .dirname:
path = os.path.dirname(a_module.__file__)
以上是如何获取Python模块的文件路径?的详细内容。更多信息请关注PHP中文网其他相关文章!