os模块运用《二》os.path.dirname用法

os.path运用

os.path.abspath(path) 返回绝对路径
os.path.basename(path) 返回文件名
os.path.commonprefix(list) 返回list(多个路径)中,所有path共有的最长的路径。
os.path.dirname(path) 返回文件路径
os.path.exists(path) 路径存在True,不存在False
os.path.lexists 路径存在则返回True,路径损坏也返回True
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(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.supports_unicode_filenames 设置是否支持unicode路径名
os.path.walk(path, visit, arg) 遍历path,进入每个目录都调用visit函数,visit函数必须有 3个参数(arg, dirname, names)
dirname表示当前目录的目录名
names代表当前目录下的所有
文件名,args则为walk的第三个参数

os.path.realpath(__file__)获取当前目录

os.path.dirname() 获取上级目录

os.path.join(当前目录, 加入目录)添加目录

print(os.path.realpath(__file__)) #获取当前文件路径

/top/second/third/detail.py

print(os.path.dirname(os.path.realpath(__file__))) # 获取当前文件上级目录

/top/second/third/

os.path.dirname(os.path.dirname(os.path.realpath(__file__))) # 获取当前文件上上级目录

/top/second

print(os.path.basename(os.path.realpath(__file__))) #获取当前文件名

detail.py

os模块运用《二》os.path.dirname用法_第1张图片
简单实例

   filepath = 'python/test.txt'
      dir_name = os.path.dirname(os.path.dirname(__file__))   #当前目录的上一级文件
      filepath = os.path.join(dir_name, filepath)  # 添加入根路径下
      if not os.path.isfile(filepath):
          res = res.format('文件已过期或者被删除')

下面示例用于爬虫调试

需要把当前项目目录放到sys.path下,scrapy命令必须在工程目录下运行
__file__:当前文件(main.py文件)
#os.path.abspath(__file__): 获取main.py的绝对路径
#os.path.dirname(os.path.abspath(__file__)):获取mian.py目录
#scrapy启动命令:scrapy crawl jobbole

import os
IMAGES_URLS_FIELD = "jpg"
project_dir = os.path.abspath(os.path.dirname(__file__))
print(project_dir, '------')
IMAGES_STORE = os.path.join(project_dir, 'images')
print(IMAGES_STORE, '-------------------')

#下面示例用于爬虫调试

from scrapy.cmdline import execute

import sys

import os
             
sys.path.append(os.path.dirname(os.path.abspath(__file__)))

execute(['scrpy', 'crawl', 'jobble'])

获取当前文件夹下所有文件名

 import os

  def file_name(file_dir):
      for root, dirs, files in os.walk(file_dir):
          print(root) #当前目录路径
          print(dirs) #当前路径下所有子目录
          print(files) #当前路径下所有非目录子文件

你可能感兴趣的:(python基础)