Python 获取当前程序脚本文件的路径

当前脚本/模块文件的路径,使用内置变量 __file__。注意“file”两端是各两个下划线。

当前工作目录,使用 os.getcwd() 方法。

For the directory of the script being run:

import pathlib
pathlib.Path(__file__).parent.resolve()

For the current working directory:

import pathlib
pathlib.Path().resolve()

For the directory of the script being run:

import os
os.path.dirname(os.path.abspath(__file__))

If you mean the current working directory:

import os
os.path.abspath(os.getcwd())

相关内容
Python 当前工作目录的路径