glob模块
- 1.glob.glob()
- 2.对比os.listdir()
glob是python自带的一个操作文件的模块,可用于查找 指定路径 中 匹配的 文件。
1.glob.glob()
下面是一个测试文件路径:
(base) pp@pp-System-Product-Name:~/Desktop/test_glob$ tree
.
├── a
│ ├── 12.txt
│ ├── 1.txt
│ └── 2.txt
└── b├── 12.txt├── 1.txt└── 2.txt2 directories, 6 files
使用glob查找 匹配的路径(返回符合模糊匹配规则的文件路径):
import glob
>>> glob.glob("/home/pp/Desktop/test_glob/a/1*") # *用于匹配任意字符['/home/pp/Desktop/test_glob/a/12.txt', '/home/pp/Desktop/test_glob/a/1.txt']
模糊匹配符:
”*”匹配0个或多个字符;”?”匹配单个字符;”[]”匹配指定范围内的字符,如:[0-9]匹配数字。
参考资料:https://blog.csdn.net/gufenchen/article/details/90723418
2.对比os.listdir()
–只是列出给定路径中的 文件或目录名:
>>> import os
>>> os.listdir("/home/pp/Desktop/test_glob/a")['2.txt', '12.txt', '1.txt']>>> os.listdir("/home/pp/Desktop/test_glob")
['a', 'b']