import os
os.path.abspath(file) :返回文件所在的绝对路径
os.path.basename(path) :去掉目录路径,单独返回文件名
os.path.dirname(path) :去掉文件名,单独返回路径名
os.path.dirname(os.path.dirname("D:\YIYIYI\Study\os_path.py")) ——> 结果是:D:\YIYIYI
os.path.commonprefix(list) :返回list(多个路径)中,所有path共有的最长的路径
os.path.join(path1[, path2[, ...]]) :把目录和文件名合成一个路径
os.path.normcase(path) :转换path的大小写和斜杠
os.path.realpath(file) :返回文件的真实路径
os.path.split(path) :把路径分割成路径和文件名,返回一个元组
os.path.splitext(path) :分离文件名与扩展名,返回一个元组
os.path.relpath(path[, start]) :从start开始计算相对路径
os.path.expanduser(path) :把path中包含的"~"和"~user"转换成用户目录os.path.expandvars(path) :根据环境变量的值替换path中包含的”$name”和”${name}”
os.path.getatime(path) :返回最后一次进入此path的时间(浮点型的秒数)
os.path.getmtime(path) :返回在此path下最后一次修改的时间(浮点型的秒数)
os.path.getctime(path) :返回path下文件或目录创建时间(浮点型的秒数)
os.path.getsize(file) :返回文件大小(单位:字节),如果文件不存在就返回错误
os.path.exists(path) :路径存在则返回True,路径损坏返回False
os.path.lexists(path):路径存在则返回True,路径损坏也返回True
os.path.isabs(path) :判断是否为绝对路径
os.path.isfile(path) :判断路径是否为文件
os.path.isdir(path) :判断路径是否为目录
os.path.islink(path) :判断路径是否为链接
os.path.ismount(path) :判断路径是否为挂载点()
os.path.samefile(path1, path2) :判断目录或文件是否相同
如果以上方法中path这个参数写成 __file__的话,就代表是当前所执行的脚本。比如os.path.realpath(__file__) 就是返回当前所执行脚本的真实路径
简单考虑异常,使用某个目录或文件时,可以先判断它是否存在,如果不存在就创建一个
参考链接:
https://blog.csdn.net/li1615882553/article/details/78759371
https://blog.csdn.net/qq_36387683/article/details/100145633