欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

python path处理

程序员文章站 2022-05-10 09:10:42
...
Python 3.6.9 |Anaconda, Inc.| (default, Jul 30 2019, 14:00:49) [MSC v.1915 64 bi
t (AMD64)]
Type 'copyright', 'credits' or 'license' for more information
IPython 7.8.0 -- An enhanced Interactive Python. Type '?' for help.

In [1]: import os

In [2]: os.getcwd()  # 获取当前工作目录路径
Out[2]: 'C:\\Program Files\\Git'

In [3]: os.path.abspath('.')  # 获取当前工作目录路径
Out[3]: 'C:\\Program Files\\Git'

In [4]: os.path.abspath('test.txt')  # 获取当前目录文件下的绝对路径
Out[4]: 'C:\\Program Files\\Git\\test.txt'

In [5]: os.path.abspath('..')  # 获取当前工作目录路径的父级目录
Out[5]: 'C:\\Program Files'

In [6]: os.path.abspath(os.curdir)  # 获取当前工作目录路径
Out[6]: 'C:\\Program Files\\Git'

相关标签: path