I've not got very far with this, I'm trying to check the creation time of a file and simply compare the date (only the day, month and year) with todays date (again only day, month and year)
import os.path, time
import datetime
fulldate = time.ctime(os.path.getctime("file.xlsx"))
Anyone know how I can convert the date and then check against todays date?