What is the best way to get a list of all files in a directory, sorted by date [created | modified], using python, on a windows machine?
|
|
Here's a more verbose version of
Example:
|
||
|
|
|
|
I've done this in the past for a Python script to determine the last updated files in a directory:
That should do what you're looking for based on file mtime. EDIT: Note that you can also use os.listdir() in place of glob.glob() if desired - the reason I used glob in my original code was that I was wanting to use glob to only search for files with a particular set of file extensions, which glob() was better suited to. To use listdir here's what it would look like:
|
||||||||||
|
|
|
Here's my version:
First, we build a list of the file names. isfile() is used to skip directories; it can be omitted if directories should be included. Then, we sort the list in-place, using the modify date as the key. |
||
|
|
|
|
Here's a one-liner:
This calls os.listdir() to get a list of the filenames, then calls os.stat() for each one to get the creation time, then sorts against the creation time. Note that this method only calls os.stat() once for each file, which will be more efficient than calling it for each comparison in a sort. |
||||||||
|
|
|
You could use |
||
|
|
|
Maybe you should use shell commands. In Unix/Linux, find piped with sort will probably be able to do what you want. |
||
|
|
