我正在尝试获取文件名中包含特定字符串的文件。例如目录中有几个文件,我想要文件名中具有“索引”或“导出”的文件。任何一段代码或方法都会有所帮助
1 回答
德玛西亚99
TA贡献1770条经验 获得超3个赞
您可以使用os module. 在里面os.walk,您可以使用所需的路径,我正在使用当前目录。
import os
for path, b, files in os.walk(os.getcwd()):
print('The path is ', path)
for file in files:
if 'index' in file or 'export' in file:
print(file)
添加回答
举报
0/150
提交
取消