python编程语言中pathlib模块简介及使用
一、概述
pathlib模块类似os模块,包含了对创建和删除目录、读写文件、获取文件所在目录不同部分字段、判断文件是否存在,是否为文件和文件夹、文件统计和匹配查找
相比于os模块,Path模块更加简洁
二、pathlib模块中Path的应用
通过举例说明Path被调用的函数作用,以下代码运行前均需要从pathlib中导入Path模块
from pathlib import Path
2.1获取路径
- Path.cwd(),返回文件当前所在目录。
- Path.home(),返回用户的主目录。
- 斜杠 ‘/’ 操作符用于拼接路径,比如创建子路径。
currentPath = Path.cwd() homePath = Path.home() new_path = currentPath / 'test' print("文件当前所在目录:%s\n用户主目录:%s" %(currentPath, homePath)) print("新目录为:%s" %(new_path ))
输出:
文件当前所在目录:/home/ss/test
用户主目录:/home/ss
新目录为:/home/ss/test/test
2.2目录的创建与删除
- Path.mkdir(),创建给定路径的目录。
- Path.rmdir(),删除该目录,目录文件夹必须为空。
currentPath = Path.cwd() ##创建文件夹 makePath = currentPath / 'tet' makePath.mkdir() # 在当前目录下创建一个子目录 python-100 print("创建的目录为:%s" %(makePath)) ###删除文件夹 delPath = currentPath / 'test' delPath.rmdir() # 在当前目录下删除子目录python-100 print("删除的目录为:%s" %(delPath))
输出:
创建的目录为/home/ss/test/test
删除目录为/home/ss/test/test
2.3获取文件路径的不同字段
Path.resolve(),通过传入文件名,返回文件的完整路径。
Path.name,可以获取文件的名字,包含后缀名。
Path.parent,返回文件所在文件夹的名字。
Path.stem,获取文件名不包含后缀名。
Path.suffix,获取文件的后缀名。
Path.anchor,获取文件所在的盘符。
txtPath = Path('test.txt') new_path= txtPath.resolve() print("文件的完整路径为:%s" % new_path) print("文件完整名称为(文件名+后缀名):%s" % new_path.name) print("文件名为:%s" % new_path.stem) print("文件后缀名为:%s" % new_path.suffix) print("文件所在的文件夹名为:%s" % new_path.parent) print("文件所在的盘符为:%s" % new_path.anchor)
2.4文件、文件夹判定以及判定是否存在
Path.exists(),判断 Path 路径是否指向一个已存在的文件或目录,返回 True 或 False。
Path.is_dir(),判断 Path 是否是一个路径,返回 True 或 False。
Path.is_file(),判断 Path 是否指向一个文件,返回 True 或 False。
currentPath = Path.cwd() / 'python' print(currentPath.exists()) # 判断是否存在 python 文件夹,此时返回 False。 print(currentPath.is_dir()) # 判断是否存在 python 文件夹,此时返回 False。 currentPath.mkdir() # 创建 python 文件夹。 print(currentPath.exists()) # 判断是否存在 python 文件夹,此时返回 True。 print(currentPath.is_dir()) # 判断是否存在 python 文件夹,此时返回 True。 currentPath = Path.cwd() / 'test.txt' print(currentPath.exists()) # 判断是否存在 test.txt 文件,此时文件未创建返回 False。 print(currentPath.is_file()) # 判断是否存在 test.txt 文件,此时文件未创建返回 False。 f = open(currentPath,'w') # 创建 test.txt 文件。 f.close() print(currentPath.exists()) # 判断是否存在 test.txt 文件,此时返回 True。 print(currentPath.is_file()) # 判断是否存在 test.txt 文件,此时返回 True。
2.5读写文件
Path.open(mode=‘r’),以 “r” 格式打开 Path 路径下的文件,若文件不存在即创建后打开。
Path.read_bytes(),打开 Path 路径下的文件,以字节流格式读取文件内容,等同 open 操作文件的 “rb” 格式。
Path.read_text(),打开 Path 路径下的文件,以 str 格式读取文件内容,等同 open 操作文件的 “r” 格式。
Path.write_bytes(),对 Path 路径下的文件进行写操作,等同 open 操作文件的 “wb” 格式。
Path.write_text(),对 Path 路径下的文件进行写操作,等同 open 操作文件的 “w” 格式
currentPath = Path.cwd() mkPath = currentPath / 'test.txt' with mkPath.open('w') as f: # 创建并以 "w" 格式打开 test.txt 文件。 f.write('test') # 写入 test 字符串。 f = open(mkPath, 'r') print("读取的文件内容为:%s" % f.read()) f.close() currentPath = Path.cwd() mkPathText = currentPath / 'test.txt' mkPathText.write_text('test') print("读取的文件内容为:%s" % mkPathText.read_text()) str2byte = bytes('test', encoding = 'utf-8') mkPathByte = currentPath / 'test-byte.txt' mkPathByte.write_bytes(str2byte) print("读取的文件内容为:%s" % mkPathByte.read_bytes())
2.6文件的匹配查找统计
Path.iterdir(),返回 Path 目录文件夹下的所有文件,返回的是一个生成器类型。
Path.glob(pattern),返回 Path 目录文件夹下所有与 pattern 匹配的文件,返回的是一个生成器类型。
Path.rglob(pattern),返回 Path 路径下所有子文件夹中与 pattern 匹配的文件,返回的是一个生成器类型。
# 使用 Path.iterdir() 获取当前文件下的所有文件,并根据后缀名统计其个数。 import pathlib from collections import Counter currentPath = pathlib.Path.cwd() gen = (i.suffix for i in currentPath.iterdir()) print(Counter(gen)) import pathlib from collections import Counter currentPath = pathlib.Path.cwd() gen = (i.suffix for i in currentPath.glob('*.txt')) # 获取当前文件下的所有 txt 文件,并统计其个数。 print(Counter(gen)) gen = (i.suffix for i in currentPath.rglob('*.txt')) # 获取目录中子文件夹下的所有 txt 文件,并统计其个数。 print(Counter(gen))
三、参考
到此这篇关于python编程语言中pathlib模块简介及使用的文章就介绍到这了,更多相关python pathlib使用内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!
相关文章
通过Python实现对SQL Server 数据文件大小的监控告警功能
这篇文章主要介绍了通过Python实现对SQL Server 数据文件大小的监控告警,本文给大家分享问题报错信息及解决方案,需要的朋友可以参考下2021-04-04
最新评论