Exercise: sort files
Write a script that given a path to a directory will print the files sorted by date.
If you don't have one large folder, then use os.walk
to get the path to the files of a whole directory tree.
- Write a simple solution.
- Profile.
- Use DSU.