第35天:pathlib 模块

简介: 第35天:pathlib 模块

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

1 获取目录

  • Path.cwd(),返回文件当前所在目录。
  • Path.home(),返回用户的主目录。

应用示例:


from pathlib import PathcurrentPath = Path.cwd()homePath = Path.home()print("文件当前所在目录:%s\n用户主目录:%s" %(currentPath, homePath))

2 目录拼接

斜杠 / 操作符用于拼接路径,比如创建子路径。

应用示例:


from pathlib import PathcurrentPath = Path.cwd()newPath = currentPath / 'python-100'print("新目录为:%s" %(newPath))

3 创建、删除目录

  • Path.mkdir(),创建给定路径的目录。
  • Path.rmdir(),删除该目录,目录文件夹必须为空。

应用示例:



from pathlib import PathcurrentPath = Path.cwd()makePath = currentPath / 'python-100'makePath.mkdir()print("创建的目录为:%s" %(nmakePath))



from pathlib import PathcurrentPath = Path.cwd()delPath = currentPath / 'python-100'delPath.rmdir()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" 格式。


应用示例:



from pathlib import PathcurrentPath = Path.cwd()mkPath = currentPath / 'python-100.txt'with mkPath.open('w') as f:  # 创建并以 "w" 格式打开 python-100.txt 文件。    f.write('python-100')  # 写入 python-100 字符串。f = open(mkPath, 'r')print("读取的文件内容为:%s" % f.read())f.close()


from pathlib import PathcurrentPath = Path.cwd()mkPathText = currentPath / 'python-100-text.txt'mkPathText.write_text('python-100')print("读取的文件内容为:%s" % mkPathText.read_text())
str2byte = bytes('python-100', encoding = 'utf-8')mkPathByte = currentPath / 'python-100-byte.txt'mkPathByte.write_bytes(str2byte)print("读取的文件内容为:%s" % mkPathByte.read_bytes())

5 获取文件所在目录的不同部分字段

  • Path.resolve(),通过传入文件名,返回文件的完整路径。
  • Path.name,可以获取文件的名字,包含后缀名。
  • Path.parent,返回文件所在文件夹的名字。
  • Path.stem,获取文件名不包含后缀名。
  • Path.suffix,获取文件的后缀名。
  • Path.anchor,获取文件所在的盘符。


from pathlib import PathtxtPath = Path('python-100.txt')nowPath = txtPath.resolve()print("文件的完整路径为:%s" % nowPath)print("文件完整名称为(文件名+后缀名):%s" % nowPath.name)print("文件名为:%s" % nowPath.stem)print("文件后缀名为:%s" % nowPath.suffix)print("文件所在的文件夹名为:%s" % nowPath.parent)print("文件所在的盘符为:%s" % nowPath.anchor)

6 文件、路径是否存在判断

  • Path.exists(),判断 Path 路径是否指向一个已存在的文件或目录,返回 True 或 False。
  • Path.is_dir(),判断 Path 是否是一个路径,返回 True 或 False。
  • Path.is_file(),判断 Path 是否指向一个文件,返回 True 或 False。


from pathlib import PathcurrentPath = 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() / 'python-100.txt'
print(currentPath.exists())  # 判断是否存在 python-100.txt 文件,此时文件未创建返回 False。print(currentPath.is_file())  # 判断是否存在 python-100.txt 文件,此时文件未创建返回 False。
f = open(currentPath,'w')  # 创建 python-100.txt 文件。f.close()
print(currentPath.exists())  # 判断是否存在 python-100.txt 文件,此时返回 True。print(currentPath.is_file())  # 判断是否存在 python-100.txt 文件,此时返回 True。

7 文件统计以及匹配查找

  • Path.iterdir(),返回 Path 目录文件夹下的所有文件,返回的是一个生成器类型。
  • Path.glob(pattern),返回 Path 目录文件夹下所有与 pattern 匹配的文件,返回的是一个生成器类型。
  • Path.rglob(pattern),返回 Path 路径下所有子文件夹中与 pattern 匹配的文件,返回的是一个生成器类型。


# 使用 Path.iterdir() 获取当前文件下的所有文件,并根据后缀名统计其个数。import pathlibfrom collections import CountercurrentPath = pathlib.Path.cwd()gen = (i.suffix for i in currentPath.iterdir())print(Counter(gen))


import pathlibfrom collections import CountercurrentPath = 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))

8 总结

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

参考资料

https://realpython.com/python-pathlib/

https://docs.python.org/zh-cn/3/library/pathlib.html

示例代码:Python-100-days-day035


系列文章

  第34天:Python json&pickle

  第33天:Python 枚举

   第32天:Python logging 模块详解        

   第31天:Python random 模块详解    

   第30天:Python collections 模块详解

   第29天:Python queue 模块详解

   第28天:Python sys 模块详解

   第27天:Python shutil 模块

   第26天:Python os 模块详解

   第25天:Python datetime 和 time

   第24天:Python Standard Library 02

   第23天:Python Standard Library 01

   第22天:Python NameSpace & Scope

   第21天:Web开发 Jinja2模板引擎

   第0-20天:从 0 学习 Python 0-20 天合集

目录
相关文章
Python模块——glob模块详解
Python模块——glob模块详解
Python模块——glob模块详解
|
3月前
|
XML Shell API
python ConfigParser、shutil、subprocess、ElementTree模块简解
python ConfigParser、shutil、subprocess、ElementTree模块简解
|
1月前
|
人工智能 Python
超级好用的Python模块——glob模块
超级好用的Python模块——glob模块
|
4月前
|
JSON Linux 数据格式
Pathlib好用吗?对比os.path
`pathlib`是Python 3.4引入的模块,提供了一种面向对象的方式来处理文件路径,以替代可能引起混淆的`os.path`字符串操作。从3.6版开始,`open()`及`os`, `shutil`, `os.path`中的函数都支持`pathlib.Path`对象。`pathlib`通过统一使用正斜杠处理不同操作系统路径,简化了代码,如在Windows和Linux上。它还允许直接对文件进行读写操作,减少错误和提高可读性。虽然`pathlib`可能稍慢于传统方法,但在大多数情况下,其易用性和可维护性优点远胜过这点性能损失。因此,推荐使用`pathlib`进行路径操作。
|
6月前
python-pathlib模块使用 --- 面向对象的文件系统路径
python-pathlib模块使用 --- 面向对象的文件系统路径
35 0
|
11月前
|
Ubuntu Python
python pathlib模块的学习
今天无意看到django 3.1的升级记录 就开始更新django了,然而只是更新了核心文件,项目层的都没有变, 就需要手动改从3.0.*升到3.1的文件 @(狂汗) 很想说,官方还没有完全改完吧... 因为只改了settings的文件(要不去提交一波 只需要把settings的os改成
64 0
pathlib的Path的基本用法
pathlib的Path的基本用法
70 0
|
Linux Python Windows
Pathlib 路径操作从此不再难 | Python 主题月
相信你一定用os库对文件系统进行过操作,比如文件读写,路径组合,上传下载等都会涉及到文件路径。但是某些操作使用os库就很不优雅,例如查找上级路径,不同操作系统间的路径处理等。今天我们就介绍一个Python内置的面向对象的路径库pathlib。
385 0
|
Unix Python
python 文件操作新姿势 pathlib模块的详细使用
相比常用的 os.path而言,pathlib 对于目录路径的操作更简介也更贴近 Pythonic。但是它不单纯是为了简化操作,还有更大的用途。 pathlib 是Python内置库,Python 文档给它的定义是:The pathlib module – object-oriented filesystem paths(面向对象的文件系统路径)。pathlib 提供表示文件系统路径的类,其语义适用于不同的操作系统。
320 0
python 文件操作新姿势 pathlib模块的详细使用
Python模块——shutil模块详解
Python模块——shutil模块详解
Python模块——shutil模块详解