Added Clean_up_photo

This commit is contained in:
sritanmay001 2019-10-17 14:41:45 +05:30
parent fa307e01a0
commit b0e8dbcff0
2 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1 @@
This program is used to find out the "bad" picture files and then eventually delete them.

View File

@ -0,0 +1,20 @@
import os
from os.path import join
for (dirname, dirs, files) in os.walk('.'):
for filename in files:
if filename.endswith('.txt') :
thefile = os.path.join(dirname,filename)
size = os.path.getsize(thefile)
if size == 2578 or size == 2565:
print 'T-Mobile:',thefile
#os.remove(thefile) Add this when you are sure to delete the file
continue
fhand = open(thefile,'r')
lines = list()
for line in fhand:
lines.append(line)
fhand.close()
if len(lines) == 3 and lines[2].startswith('Sent from my iPhone'):
print 'iPhone:', thefile
#os.remove(thefile) Add this when you are sure to delete the file
continue