python 统计文件的个数
2021-06-30 08:04
标签:with div ror 个数 root color walk wal count python 统计文件的个数 标签:with div ror 个数 root color walk wal count 原文地址:https://www.cnblogs.com/xiaodai0/p/9643090.htmlimport os
path = r‘F:\1back\picture‘ #获取当前路径
count = 0
for root,dirs,files in os.walk(path): #遍历统计
if "mouse_error" in root:
print(root)
for each in files:
if each.endswith(".jpg"):
count += 1 #统计文件夹下文件个数
print(count) # 输出结果
上一篇:python猜数字小游戏