确定当前文件目录的完整路径
在 Python 中可以使用特殊的 文件变量。
Pathlib方法(Python 3):
运行脚本的目录:import pathlib pathlib.Path(__file__).parent.resolve()
os.path 模块方法(Python 2 和 3):
运行目录script:import os os.path.dirname(os.path.abspath(__file__))
注意: 需要注意的是,file 前后包含两个下划线(而不是一个)。
提取当前工作目录(cwd):import os os.path.abspath(os.getcwd())总结一下,这些技巧使您能够确定包含当前 Python 脚本或当前工作目录的目录的完整路径。
以上是如何在 Python 中获取当前文件目录的完整路径?的详细内容。更多信息请关注PHP中文网其他相关文章!