标签:size 方法 listdir python rem pat 删除 文件 目录
for file in os.listdir(‘yolov3_tiny_car_det/output‘): fsize = os.path.getsize(f‘yolov3_tiny_car_det/output/{file}‘) if (fsize<40000): os.remove(f‘yolov3_tiny_car_det/output/{file}‘)
yolov3_tiny_car_det/output为目录,40000指字节
标签:size 方法 listdir python rem pat 删除 文件 目录
原文地址:https://www.cnblogs.com/ywheunji/p/12256668.html