当前位置: 首页 > 图灵资讯 > 行业资讯> python如何遍历文件夹

python如何遍历文件夹

来源:图灵python
时间: 2024-07-30 09:56:27

本文教程操作环境:windows7系统Python 3.9.1,DELL G3电脑。

1、使用 os.walk(folder) 函数,folder是要搜索的文件夹的顶层。

base/
├──fileA.txt
├──fileA2.xls
├──fileA3.xls
├──fileA4.pdf
├──sub1
│├──fileB.txt
│├──fileB2.xls
│└──fileB3.pdf
└──sub2
├──fileB.txt
├──fileC2.xls
└──fileC3.pdf

2、使用递归的方法

importos
files=list()
defdirAll(pathname):
ifos.path.exists(pathname):
filelist=os.listdir(pathname)
forfinfilelist:
f=os.path.join(pathname,f)
ifos.path.isdir(f):
dirAll(f)
else:
dirname=os.path.dirname(f)
baseName=os.path.basename(f)
ifdirname.endswith(os.sep):
files.append(dirname+baseName)
else:
files.append(dirname+os.sep+baseName)


dirAll("/Users/cxhuan/Downloads/globtest/hello")
forfinfiles:
print(f)

3、glob是python附带的操作文件模块,以其简单实用而闻名。该模块功能简单,使用方便。主要用于查找符合特定规则的文件路径。

*:匹配0个或多个字符;
?:匹配单个字符;
[]:匹配指定范围内的字符,如:[0-9]匹配数字。

以上是python遍历文件夹的方法。本文总结了三种遍历操作,即os.walk函数、递归和glob操作文件模块,在您了解了它们的基本用法之后,就可以运行上面的代码部分。更多Python学习指导:python基础教程