"python获取文件绝对路径"

Published on Aug. 22, 2023, 12:09 p.m.

os.path.abspath

os.path.abspath(file)输出的是被执行的当前文件的绝对路径,包括文件名。
文件 bar.py内容如下:

import osd = os.path.abspath(__file__)print(d)

python bar.py输出结果是/home/molock/bar.py

Tags: