标签: python directory os.path
我尝试过:
dir = os.path.dirname(".")
回报是空的。
答案 0 :(得分:4)
abspath应该这样做:
abspath
dir = os.path.abspath('.')
答案 1 :(得分:3)
使用abspath:
或当前工作目录
dir = os.path.getcwd()