Created
August 25, 2020 13:41
-
-
Save aeg/15b3fae5a29468e9924f595964478ac1 to your computer and use it in GitHub Desktop.
ある拡張子のファイルを日付順でソートする。
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
csv_dir='./' | |
l:list = list(filter(lambda x: x.endswith('.py'), os.listdir(path=csv_dir))) | |
l.sort (key=lambda x: int(os.path.getctime(csv_dir + '/' + x)), | |
reverse=True) | |
print(l) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment