os.path的使用

2023-01-12 19:07:53

1、os.path.abspath(file)

1、__file__指的是当前脚本及绝对路径,比如G:/python/code/selenium1/test1/test44.py。 通过调用 file 属性输出的绝对路径,我们可以很轻易地找到该模块(或包)的源文件。

2、os.path.dirname(file) 返回当前脚本的绝对路径
3、不可以直接在命令行(cmd)运行print(os.path.abspath(file))

import os
# 返回当前脚本的绝对路径G:\python\code\selenium1\test1\test44.py
print (os.path.abspath(__file__))

2、os.path.dirname(file)

1、os.path.dirname(path) 返回path的父路径
2、可嵌套使用

import os
# 当前脚本绝对路径 G:/python/code/selenium1/test1/test44.py

import sys

# G:/python/code/selenium1/test1
print(os.path.dirname(__file__))

# 返回当前脚本父路径的父路径 G:/python/code/selenium1
print(os.path.dirname(os.path.dirname(__file__)))

# 返回当前脚本父路径的父路径的父路径  G:/python/code
print(os.path.dirname(os.path.dirname(os.path.dirname(__file__))))

# 返回当前脚本父路径的绝对路径 G:\python\code\selenium1\test1
print(os.path.abspath(os.path.dirname(__file__)))

3、os.path.basename(file)

返回当前脚本的文件名

#文件路径 G:/python/code/selenium1/test1/test44.py
#返回当前脚本的文件名称 test44.py
print (os.path.basename(__file__))

4、sys.path.append()

python程序中使用 import XXX 时,python解析器会在当前目录、已安装和第三方模块中搜索 xxx,如果都搜索不到就会报错。
使用sys.path.append()方法可以临时添加搜索路径,方便更简洁的import其他包和模块。这种方法导入的路径会在python程序退出后失效。

  1. 加入上层目录和绝对路径
import sys
sys.path.append('..') #表示导入当前文件的上层目录到搜索路径中
sys.path.append('/home/model') # 绝对路径
from folderA.folderB.fileA import functionA
  1. 加入当前目录
import os,sys
sys.path.append(os.getcwd())
os.getcwd()用于获取当前工作目录

5、sys.path.insert()

定义搜索优先顺序

import sys
sys.path.insert(0, "./model")
sys.path.insert(1, "./crnn")定义搜索路径的优先顺序,序号从0开始,表示最大优先级,sys.path.insert()加入的也是临时搜索路径,程序退出后失效。

6、更多用法

os.path.commonprefix(list) 返回list(多个路径)中,所有path共有的最长的路径
os.path.dirname(path) 返回文件路径
os.path.exists(path) 如果路径 path 存在,返回 True;如果路径 path 不存在,返回 False。
os.path.lexists 路径存在则返回True,路径损坏也返回True
os.path.expanduser(path) 把path中包含的""和"user"转换成用户目录
os.path.expandvars(path) 根据环境变量的值替换path中包含的" n a m e " 和 " name"和" name""{name}"
os.path.getatime(path) 返回最近访问时间(浮点型秒数)
os.path.getmtime(path) 返回最近文件修改时间
os.path.getctime(path) 返回文件 path 创建时间
os.path.getsize(path) 返回文件大小,如果文件不存在就返回错误
os.path.isabs(path) 判断是否为绝对路径
os.path.isfile(path) 判断路径是否为文件
os.path.isdir(path) 判断路径是否为目录
os.path.islink(path) 判断路径是否为链接
os.path.ismount(path) 判断路径是否为挂载点
os.path.join(path1[, path2[, …]]) 把目录和文件名合成一个路径
os.path.normcase(path) 转换path的大小写和斜杠
os.path.normpath(path) 规范path字符串形式
os.path.realpath(path) 返回path的真实路径
os.path.relpath(path[, start]) 从start开始计算相对路径
os.path.samefile(path1, path2) 判断目录或文件是否相同
os.path.sameopenfile(fp1, fp2) 判断fp1和fp2是否指向同一文件
os.path.samestat(stat1, stat2) 判断stat tuple stat1和stat2是否指向同一个文件
os.path.split(path) 把路径分割成 dirname 和 basename,返回一个元组
os.path.splitdrive(path) 一般用在 windows 下,返回驱动器名和路径组成的元组
os.path.splitext(path) 分割路径,返回路径名和文件扩展名的元组
os.path.splitunc(path) 把路径分割为加载点与文件
os.path.walk(path, visit, arg) 遍历path,进入每个目录都调用visit函数,visit函数必须有3个参数(arg, dirname, names),dirname表示当前目录的目录名,names代表当前目录下的所有文件名,args则为walk的第三个参数
os.path.supports_unicode_filenames 设置是否支持unicode路径名

参考
Python学习笔记 - os.path.abspath(file), os.path.dirname(file)以及os.path.basename(file)

sys.path.append()和sys.path.insert()

  • 作者:smlie_A
  • 原文链接:https://blog.csdn.net/smlie_A/article/details/113782271
    更新时间:2023-01-12 19:07:53