from datetime import datetime
from pathlib import Path
today = datetime.today()
print('Below files will be deleted.')
for i in Path('/home/mana/Test/').rglob('*'):
mtime = datetime.fromtimestamp)i.stat().st_mtime)
filetime = mtime - today
if filetime.days < -30:
print(f'{i.name:<20} older {abs(filetime.days)} days')
i.unlink()