python统计训练集下的图片个数

参考:https://www.cnblogs.com/lovychen/p/5291673.html

-----------------------------------------------------------------------------------------------------

#统计 /home/dir/ 下的文件夹个数

import os

path ="home/dir"

count = 0

for fn in os.listdir(path): #fn 表示的是文件名

        count = count+1

print count

-----------------------------------------------------------------------------------------------------

获取文件夹下的文件的个数:

import os

path = os.getcwd()    #获取当前路径

count = 0

for root,dirs,files in os.walk(path):    #遍历统计

      for each in files:

            count += 1  #统计文件夹下文件个数

print count              #输出结果

-----------------------------------------------------------------------------------------------------

©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容