python 遍历文件夹并统计文件数量
使用python遍历文件夹下的子文件夹及文件,并统计出文件夹下文件的数量:
import os count = 0 # 遍历文件夹 def walkFile(file): for root, dirs, files in os.walk(file): # root 表示当前正在访问的文件夹路径 # dirs 表示该文件夹下的子目录名list # files 表示该文件夹下的文件list # 遍历文件 for f in files: global count count += 1 print(os.path.join(root, f)) # 遍历所有的文件夹 for d in dirs: print(os.path.join(root, d)) print("文件数量一共为:", count) if __name__ == ‘__main__‘: walkFile(r"E:\test")
相关推荐
kikaylee 2020-11-11
kaixinfelix 2020-10-04
liuyang000 2020-09-25
nongfusanquan0 2020-09-23
aanndd 2020-08-12
Tips 2020-08-08
waitwolf 2020-07-30
81264454 2020-07-17
shenxiuwen 2020-07-05
roseying 2020-07-04
清溪算法君老号 2020-06-27
OldBowl 2020-06-26
dugujiujian 2020-06-25
oXiaoChong 2020-06-20
晓杰0 2020-06-14
Masimaro 2020-06-14
vincen 2020-06-12
Jasmineyaoyao 2020-06-08