mirror of
https://github.com/hastagAB/Awesome-Python-Scripts.git
synced 2024-11-23 20:11:07 +00:00
20 lines
788 B
Python
20 lines
788 B
Python
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 |