Sunday Blog

人生是一场刻意练习

Python Path 路径

Python Path

os.path from os import path # 拼接路径 p=path.join('/etc','sysconfig','network') # 路径是否存在 print(path.exists(p)) # 分割 (元组: dirname和basename) print(path.split(p)) # 路径和基名 print(path.dirname(p),path.basename(p)) # 当前路径 print(path.abspath(""),path.abspath('.')) # windows print(path.splitdrive('o:/tmp/test')) #windows 文件根目录 p1=path.abspath(__file__) #父文