Spaces:
Sleeping
Sleeping
File size: 906 Bytes
1e4b791 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
import os
remo_count=0
temp = []
txt_names = os.listdir("./data/test/labels/") # dir of txt files
for x in txt_names:
with open('./data/test/labels/' + x, 'r') as file: # openeing txt files
lines = file.readlines()
if len(lines) == 0: # if thee txt file is empty
file_name = os.path.splitext(x)[0] # save file name without suffic
temp.append('./data/test/labels/'+ x) # add the txt file name to a list cus it is still open
print('./data/test/labels/'+ x)
try:
os.remove('./data/test/images/'+ file_name + '.jpg') # remove the img file that corresonds to the txt file
except:
print('Could not find the jpg version')
remo_count += 1
file.close()
for i in temp:
os.remove(i) # remove all empty txt files
print(remo_count)
|