【python标准库】glob模块匹配路径

glob可以通过通配符查找路径。例如

>>> import glob
>>> for i in range(10):
...   temp = open(str(i)+'.py','w')
...   temp.close()
...
>>> glob.glob(r'E:\Documents\00\1101\*.py')
['E:\\Documents\\00\\1101\\0.py', 'E:\\Documents\\00\\1101\\1.py', 'E:\\Documents\\00\\1101\\2.py', 'E:\\Documents\\00\\1101\\3.py', 'E:\\Documents\\00\\1101\\4.py', 'E:\\Documents\\00\\1101\\5.py', 'E:\\Documents\\00\\1101\\6.py', 'E:\\Documents\\00\\1101\\7.py', 'E:\\Documents\\00\\1101\\8.py', 'E:\\Documents\\00\\1101\\9.py']
>>>

查看源码可以发现,glob是通过list(iglob(**))实现的,iglob返回一个符合要求路径的迭代器,glob将其转化为列表。

>>> it = glob.iglob(r'E:\Documents\00\1101\*.py')
>>> next(it)
'E:\\Documents\\00\\1101\\0.py'
>>> next(it)
'E:\\Documents\\00\\1101\\1.py'
>>> next(it)
'E:\\Documents\\00\\1101\\2.py'
>>> list(it)
['E:\\Documents\\00\\1101\\3.py', 'E:\\Documents\\00\\1101\\4.py', 'E:\\Documents\\00\\1101\\5.py', 'E:\\Documents\\00\\1101\\6.py', 'E:\\Documents\\00\\1101\\7.py', 'E:\\Documents\\00\\1101\\8.py', 'E:\\Documents\\00\\1101\\9.py']

除了*可以被转义之外,glob还可以将[]?等字符进行转义,其方法结合了os.scandir()fnmatch.fnmatch()函数,例如

>>> glob.glob(r'E:\Documents\00\1101\[1-5].py')
['E:\\Documents\\00\\1101\\1.py', 'E:\\Documents\\00\\1101\\2.py', 'E:\\Documents\\00\\1101\\3.py', 'E:\\Documents\\00\\1101\\4.py', 'E:\\Documents\\00\\1101\\5.py']

fnmatch是python中的文件夹匹配模块,其匹配规则为

模式 * ? [seq] [!seq]
含意 所有字符 任何单个字符 seq中任何字符 不在seq中的字符

fnmatch中封装了一个正则表达式转化函数,可将fnmatch的匹配规则转为正则表达式的匹配规则,例如

>>> fnmatch.translate('[1-5]*.py')
'(?s:[1-5].*\\.py)\\Z'

你可能感兴趣的:(#,Python标准库,python,glob,路径匹配)