Has anybody accomplished this with python?
Here's what I have so far...
if os.path.isdir(options.map_file_directory):
searchedfile = glob.glob("*.map")
files = sorted( searchedfile, key = lambda file: os.path.getctime(file))
for i in files:
print("{} - {}".format(i, time.ctime(os.path.getctime(i))) )