One liner to get the full path of the file:
max(map(lambda file: DIR_PATH / file, filter(lambda file: 'Your-nice-timestamped-pattern' in file, os.listdir(DIR_PATH))), key=os.path.getctime)
(Assuming DIR_PATH is a pathlib Path object and you want the file that was created last)