pathlib模块提供了表示文件系统路径的类,可适用于不同的操作系统。
使用 pathlib 模块,相比于 os 模块可以写出更简洁,易读的代码。
pathlib 模块中的 Path 类继承自 PurePath,对 PurePath 中的部分方法进行了重载,相比于 os.path 有更高的抽象级别。
获取目录
Path.cwd(),返回文件当前所在目录。
Path.home(),返回用户的主目录。
1 from pathlib importPath2 currentPath =Path.cwd()3 homePath =Path.home()4 print("文件当前所在目录:%s\n用户主目录:%s" %(currentPath, homePath))
目录拼接
斜杠 / 操作符用于拼接路径,比如创建子路径
应用示例:
1 from pathlib importPath2 currentPath =Path.cwd()3 newPath = currentPath / 'python-100'
4 print("新目录为:%s" %(newPath))
创建、删除目录
Path.mkdir(),创建给定路径的目录。
Path.rmdir(),删除该目录,目录文件夹必须为空。
1 from pathlib importPath2 currentPath =Path.cwd()3 makePath = currentPath / 'python-100'
4 makePath.mkdir()5 print("创建的目录为:%s" %(nmakePath))6 from pathlib importPath7 currentPath =Path.cwd()8 delPath = currentPath / 'python-100'
9 delPath.rmdir()10 print("删除的目录为:%s" %(delPath))
读写文件
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 importPath2 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 importPath10 currentPath =Path.cwd()11 mkPathText = currentPath / 'python-100-text.txt'
12 mkPathText.write_text('python-100')13 print("读取的文件内容为:%s" %mkPathText.read_text())14
15 str2byte = bytes('python-100', encoding = 'utf-8')16 mkPathByte = currentPath / 'python-100-byte.txt'
17 mkPathByte.write_bytes(str2byte)18 print("读取的文件内容为:%s" % mkPathByte.read_bytes())
获取文件所在目录的不同部分字段
Path.resolve(),通过传入文件名,返回文件的完整路径。
Path.name,可以获取文件的名字,包含后缀名。
Path.parent,返回文件所在文件夹的名字。
Path.stem,获取文件名不包含后缀名。
Path.suffix,获取文件的后缀名。
Path.anchor,获取文件所在的盘符。
1 from pathlib importPath2 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)
文件、路径是否存在判断
Path.exists(),判断 Path 路径是否指向一个已存在的文件或目录,返回 True 或 False。
Path.is_dir(),判断 Path 是否是一个路径,返回 True 或 False。
Path.is_file(),判断 Path 是否指向一个文件,返回 True 或 False。
1 from pathlib importPath2 currentPath = Path.cwd() / 'python'
3
4 print(currentPath.exists()) #判断是否存在 python 文件夹,此时返回 False。
5 print(currentPath.is_dir()) #判断是否存在 python 文件夹,此时返回 False。
6
7 currentPath.mkdir() #创建 python 文件夹。
8
9 print(currentPath.exists()) #判断是否存在 python 文件夹,此时返回 True。
10 print(currentPath.is_dir()) #判断是否存在 python 文件夹,此时返回 True。
11
12 currentPath = Path.cwd() / 'python-100.txt'
13
14 print(currentPath.exists()) #判断是否存在 python-100.txt 文件,此时文件未创建返回 False。
15 print(currentPath.is_file()) #判断是否存在 python-100.txt 文件,此时文件未创建返回 False。
16
17 f = open(currentPath,'w') #创建 python-100.txt 文件。
18 f.close()19
20 print(currentPath.exists()) #判断是否存在 python-100.txt 文件,此时返回 True。
21 print(currentPath.is_file()) #判断是否存在 python-100.txt 文件,此时返回 True。
文件统计以及匹配查找
Path.iterdir(),返回 Path 目录文件夹下的所有文件,返回的是一个生成器类型。
Path.glob(pattern),返回 Path 目录文件夹下所有与 pattern 匹配的文件,返回的是一个生成器类型。
Path.rglob(pattern),返回 Path 路径下所有子文件夹中与 pattern 匹配的文件,返回的是一个生成器类型。
1 #使用 Path.iterdir() 获取当前文件下的所有文件,并根据后缀名统计其个数。
2 importpathlib3 from collections importCounter4 currentPath =pathlib.Path.cwd()5 gen = (i.suffix for i incurrentPath.iterdir())6 print(Counter(gen))7 importpathlib8 from collections importCounter9 currentPath =pathlib.Path.cwd()10 gen = (i.suffix for i in currentPath.glob('*.txt')) #获取当前文件下的所有 txt 文件,并统计其个数。
11 print(Counter(gen))12 gen = (i.suffix for i in currentPath.rglob('*.txt')) #获取目录中子文件夹下的所有 txt 文件,并统计其个数。
13 print(Counter(gen))