在python中,如何获得“。”的完整路径名?

时间:2017-11-25 16:38:40

标签: python directory os.path

我尝试过:

dir = os.path.dirname(".")

回报是空的。

2 个答案:

答案 0 :(得分:4)

abspath应该这样做:

dir = os.path.abspath('.')

答案 1 :(得分:3)

使用abspath

dir = os.path.abspath('.')

或当前工作目录

dir = os.path.getcwd()