gpt4 book ai didi

python - 循环 Path.glob() (Pathlib) 的结果

转载 作者:太空狗 更新时间:2023-10-29 20:44:39 25 4
gpt4 key购买 nike

<分区>

我正在努力处理 Python 3.6 中 Pathlib 模块的 Path.glob() 方法的结果。

from pathlib import Path

dir = Path.cwd()

files = dir.glob('*.txt')
print(list(files))
>> [WindowsPath('C:/whatever/file1.txt'), WindowsPath('C:/whatever/file2.txt')]

for file in files:
print(file)
print('Check.')
>>

显然,glob 找到了文件,但是没有执行 for 循环。如何遍历 pathlib-glob-search 的结果?

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com