Python的pathlib模块结合正则一起用吗
比如说我想在glob和rglob使用正则查找文件是否可行from pathlib import Path
for file in Path().glob('\d+.txt'):
print(file.name)
类似这样 本帖最后由 阿奇_o 于 2021-4-20 17:53 编辑
官方文档里,似乎没说可以用正则,一般用法是:
from pathlib import Path
p = Path('.') #生成当前目录的Path对象(os.path的高一级的封装)
#列出当前目录包含哪些子目录
#列出该目录下的所有 .py文件 (包括子目录里的)
#The “**” pattern means “this directory and all subdirectories, recursively”. In other words, it enables recursive globbing:
list(p.glob('**/*.py')) # '**' 代表递归查找所有子目录
# 而 rglob() 怎么用?
list(p.rglob("*.py")) # 等价于与 glob('**/*.py')
# This is like calling Path.glob() with “**/” added in front of the given relative pattern:
# 即 rglob的 r表示递归,而不是 正则
通常更多的应该是用 os.path 和 os.listdir 等方法,更“底层点”,也更直接些。 {:5_95:}
页:
[1]