Python obtient la liste des fichiers et du temps créés

import os
from pathlib import Path

paths = sorted(Path(dirpath).iterdir(), key=os.path.getmtime)
Wide-eyed Wallaby