翼度科技»论坛 编程开发 python 查看内容

Python中pathlib 模块的用法

9

主题

9

帖子

27

积分

新手上路

Rank: 1

积分
27
pathlib 模块提供了表示文件系统路径的类,可适用于不同的操作系统。
使用 pathlib 模块,相比于 os 模块可以写出更简洁,易读的代码。pathlib 模块中的 Path 类继承自 PurePath,对 PurePath 中的部分方法进行了重载,相比于 os.path 有更高的抽象级别。
本文将带你学习如何使用 pathlib 模块中的 Path 类读写文件、操纵文件路径和基础文件系统,统计目录下的文件类型以及查找匹配目录下某一类型文件等。
下面就开始进入我们的学习时刻。
1.获取目录


  • Path.cwd(),返回文件当前所在目录。
  • Path.home(),返回用户的主目录。
应用示例:
  1. from pathlib import Path
  2. currentPath = Path.cwd()
  3. homePath = Path.home()
  4. print("文件当前所在目录:%s\n用户主目录:%s" %(currentPath, homePath))
复制代码
2.目录拼接

斜杠 / 操作符用于拼接路径,比如创建子路径。
应用示例:
  1. from pathlib import Path
  2. currentPath = Path.cwd()
  3. newPath = currentPath / 'python-100'
  4. print("新目录为:%s" %(newPath))
复制代码
3.创建、删除目录


  • Path.mkdir(),创建给定路径的目录。
  • Path.rmdir(),删除该目录,目录文件夹必须为空。
应用示例:
  1. from pathlib import Path
  2. currentPath = Path.cwd()
  3. makePath = currentPath / 'python-100'
  4. makePath.mkdir()
  5. print("创建的目录为:%s" %(nmakePath))
  6. from pathlib import Path
  7. currentPath = Path.cwd()
  8. delPath = currentPath / 'python-100'
  9. delPath.rmdir()
  10. print("删除的目录为:%s" %(delPath))
复制代码
4.读写文件


  • 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" 格式。
应用示例:
  1. from pathlib import Path
  2. currentPath = Path.cwd()
  3. mkPath = currentPath / 'python-100.txt'
  4. with mkPath.open('w') as f:  # 创建并以 "w" 格式打开 python-100.txt 文件。
  5.     f.write('python-100')  # 写入 python-100 字符串。
  6. f = open(mkPath, 'r')
  7. print("读取的文件内容为:%s" % f.read())
  8. f.close()
  9. from pathlib import Path
  10. currentPath = Path.cwd()
  11. mkPathText = currentPath / 'python-100-text.txt'
  12. mkPathText.write_text('python-100')
  13. print("读取的文件内容为:%s" % mkPathText.read_text())
  14. str2byte = bytes('python-100', encoding = 'utf-8')
  15. mkPathByte = currentPath / 'python-100-byte.txt'
  16. mkPathByte.write_bytes(str2byte)
  17. print("读取的文件内容为:%s" % mkPathByte.read_bytes())
复制代码
5.获取文件所在目录的不同部分字段


  • Path.resolve(),通过传入文件名,返回文件的完整路径。
  • Path.name,可以获取文件的名字,包含后缀名。
  • Path.parent,返回文件所在文件夹的名字。
  • Path.stem,获取文件名不包含后缀名。
  • Path.suffix,获取文件的后缀名。
  • Path.anchor,获取文件所在的盘符。
  1. from pathlib import Path
  2. txtPath = Path('python-100.txt')
  3. nowPath = txtPath.resolve()
  4. print("文件的完整路径为:%s" % nowPath)
  5. print("文件完整名称为(文件名+后缀名):%s" % nowPath.name)
  6. print("文件名为:%s" % nowPath.stem)
  7. print("文件后缀名为:%s" % nowPath.suffix)
  8. print("文件所在的文件夹名为:%s" % nowPath.parent)
  9. print("文件所在的盘符为:%s" % nowPath.anchor)
复制代码
6.文件、路径是否存在判断


  • Path.exists(),判断 Path 路径是否指向一个已存在的文件或目录,返回 True 或 False。
  • Path.is_dir(),判断 Path 是否是一个路径,返回 True 或 False。
  • Path.is_file(),判断 Path 是否指向一个文件,返回 True 或 False。
  1. from pathlib import Path
  2. currentPath = Path.cwd() / 'python'
  3. print(currentPath.exists())  # 判断是否存在 python 文件夹,此时返回 False。
  4. print(currentPath.is_dir())  # 判断是否存在 python 文件夹,此时返回 False。
  5. currentPath.mkdir()  # 创建 python 文件夹。
  6. print(currentPath.exists())  # 判断是否存在 python 文件夹,此时返回 True。
  7. print(currentPath.is_dir())  # 判断是否存在 python 文件夹,此时返回 True。
  8. currentPath = Path.cwd() / 'python-100.txt'
  9. print(currentPath.exists())  # 判断是否存在 python-100.txt 文件,此时文件未创建返回 False。
  10. print(currentPath.is_file())  # 判断是否存在 python-100.txt 文件,此时文件未创建返回 False。
  11. f = open(currentPath,'w')  # 创建 python-100.txt 文件。
  12. f.close()
  13. print(currentPath.exists())  # 判断是否存在 python-100.txt 文件,此时返回 True。
  14. print(currentPath.is_file())  # 判断是否存在 python-100.txt 文件,此时返回 True。
复制代码
7.文件统计以及匹配查找


  • Path.iterdir(),返回 Path 目录文件夹下的所有文件,返回的是一个生成器类型。
  • Path.glob(pattern),返回 Path 目录文件夹下所有与 pattern 匹配的文件,返回的是一个生成器类型。
  • Path.rglob(pattern),返回 Path 路径下所有子文件夹中与 pattern 匹配的文件,返回的是一个生成器类型。
  1. # 使用 Path.iterdir() 获取当前文件下的所有文件,并根据后缀名统计其个数。
  2. #学习中遇到问题没人解答?小编创建了一个Python学习交流群:153708845
  3. import pathlib
  4. from collections import Counter
  5. currentPath = pathlib.Path.cwd()
  6. gen = (i.suffix for i in currentPath.iterdir())
  7. print(Counter(gen))
  8. import pathlib
  9. from collections import Counter
  10. currentPath = pathlib.Path.cwd()
  11. gen = (i.suffix for i in currentPath.glob('*.txt'))  # 获取当前文件下的所有 txt 文件,并统计其个数。
  12. print(Counter(gen))
  13. gen = (i.suffix for i in currentPath.rglob('*.txt'))  # 获取目录中子文件夹下的所有 txt 文件,并统计其个数。
  14. print(Counter(gen))
复制代码
8.总结

本文给大家介绍了 Python 的 pathlib 模块,为 Python 工程师对该模块的使用提供了支撑,让大家了解如何使用 pathlib 模块读写文件、操纵文件路径和基础文件系统,统计目录下的文件类型以及查找匹配目录下某一类型文件等。

来源:https://www.cnblogs.com/Pythonmiss/p/18141010
免责声明:由于采集信息均来自互联网,如果侵犯了您的权益,请联系我们【E-Mail:cb@itdo.tech】 我们会及时删除侵权内容,谢谢合作!

举报 回复 使用道具