How do you get a directory listing sorted by creation date in python? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T19:11:35Z http://stackoverflow.com/feeds/question/168409 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/168409/how-do-you-get-a-directory-listing-sorted-by-creation-date-in-python 8 How do you get a directory listing sorted by creation date in python? Liza 2008-10-03T19:10:08Z 2009-02-12T16:26:49Z <p>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?</p> http://stackoverflow.com/questions/168409/how-do-you-get-a-directory-listing-sorted-by-creation-date-in-python/168424#168424 9 Answer by Jay for How do you get a directory listing sorted by creation date in python? Jay 2008-10-03T19:12:48Z 2009-02-12T16:26:49Z <p>I've done this in the past for a Python script to determine the last updated files in a directory: </p> <pre><code>import glob import os search_dir = "/mydir/" # remove anything from the list that is not a file (directories, symlinks) # thanks to J.F. Sebastion for pointing out that the requirement was a list # of files (presumably not including directories) files = filter(os.path.isfile, glob.glob(search_dir + "*")) files.sort(key=lambda x: os.path.getmtime(x)) </code></pre> <p>That should do what you're looking for based on file mtime.</p> <p><strong>EDIT</strong>: 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: </p> <pre><code>import os search_dir = "/mydir/" os.chdir(search_dir) files = filter(os.path.isfile, os.listdir(search_dir)) files = [os.path.join(search_dir, f) for f in files] # add path to each file files.sort(key=lambda x: os.path.getmtime(x)) </code></pre> http://stackoverflow.com/questions/168409/how-do-you-get-a-directory-listing-sorted-by-creation-date-in-python/168430#168430 -2 Answer by stephanea for How do you get a directory listing sorted by creation date in python? stephanea 2008-10-03T19:14:18Z 2008-10-03T19:14:18Z <p>Maybe you should use shell commands. In Unix/Linux, find piped with sort will probably be able to do what you want. </p> http://stackoverflow.com/questions/168409/how-do-you-get-a-directory-listing-sorted-by-creation-date-in-python/168435#168435 3 Answer by Greg Hewgill for How do you get a directory listing sorted by creation date in python? Greg Hewgill 2008-10-03T19:15:23Z 2008-10-03T19:15:23Z <p>Here's a one-liner:</p> <pre><code>import os import time from pprint import pprint pprint([(x[0], time.ctime(x[1].st_ctime)) for x in sorted([(fn, os.stat(fn)) for fn in os.listdir(".")], key = lambda x: x[1].st_ctime)]) </code></pre> <p>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.</p> <p>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.</p> http://stackoverflow.com/questions/168409/how-do-you-get-a-directory-listing-sorted-by-creation-date-in-python/168580#168580 5 Answer by efotinis for How do you get a directory listing sorted by creation date in python? efotinis 2008-10-03T19:46:53Z 2008-10-03T19:46:53Z <p>Here's my version:</p> <pre><code>def getfiles(dirpath): a = [s for s in os.listdir(dirpath) if os.path.isfile(os.path.join(dirpath, s))] a.sort(key=lambda s: os.path.getmtime(os.path.join(dirpath, s))) return a </code></pre> <p>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.</p> http://stackoverflow.com/questions/168409/how-do-you-get-a-directory-listing-sorted-by-creation-date-in-python/168658#168658 3 Answer by fivebells for How do you get a directory listing sorted by creation date in python? fivebells 2008-10-03T20:07:15Z 2008-10-03T20:07:15Z <pre><code>sorted(filter(os.path.isfile, os.listdir('.')), key=lambda p: os.stat(p).st_mtime) </code></pre> <p>You could use <code>os.walk('.').next()[-1]</code> instead of filtering with <code>os.path.isfile</code>, but that leaves dead symlinks in the list, and <code>os.stat</code> will fail on them.</p> http://stackoverflow.com/questions/168409/how-do-you-get-a-directory-listing-sorted-by-creation-date-in-python/539024#539024 2 Answer by J.F. Sebastian for How do you get a directory listing sorted by creation date in python? J.F. Sebastian 2009-02-11T21:58:21Z 2009-02-11T21:58:21Z <p>Here's a more verbose version of <a href="http://stackoverflow.com/questions/168409/how-do-you-get-a-directory-listing-sorted-by-creation-date-in-python/168435#168435"><code>@Greg Hewgill</code>'s answer</a>. It is the most conforming to the question requirements. It makes a distinction between creation and modification dates (at least on Windows).</p> <pre><code>#!/usr/bin/env python from stat import S_ISREG, ST_CTIME, ST_MODE import os, sys, time # path to the directory (relative or absolute) dirpath = sys.argv[1] if len(sys.argv) == 2 else r'.' # get all entries in the directory w/ stats entries = (os.path.join(dirpath, fn) for fn in os.listdir(dirpath)) entries = ((os.stat(path), path) for path in entries) # leave only regular files, insert creation date entries = ((stat[ST_CTIME], path) for stat, path in entries if S_ISREG(stat[ST_MODE])) #NOTE: on Windows `ST_CTIME` is a creation date # but on Unix it could be something else #NOTE: use `ST_MTIME` to sort by a modification date for cdate, path in sorted(entries): print time.ctime(cdate), os.path.basename(path) </code></pre> <p>Example:</p> <pre><code>$ python stat_creation_date.py Thu Feb 11 13:31:07 2009 stat_creation_date.py </code></pre>