show/hide this revision's text 5 replaced sort with cmp with key parameter instead

I've done this in the past for a Python script to determine the last updated files in a directory:

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(lambda x,yfiles.sort(key=lambda x: cmp(os.path.getmtime(x), os.path.getmtime(y))os.path.getmtime(x))

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:

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(lambda x,yfiles.sort(key=lambda x: cmp(os.path.getmtime(x), os.path.getmtime(y))os.path.getmtime(x))
show/hide this revision's text 4 Added filter for isfile and added path to os.listdir() returned values

I've done this in the past for a Python script to determine the last updated files in a directory:

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(lambda x,y: cmp(os.path.getmtime(x), os.path.getmtime(y)))

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:

import os

search_dir = "/mydir/"
os.chdir(search_dir)
files = os.listdir(search_dir)
files.sort(lambda x,y: cmp(os.path.getmtime(x)filter(os.path.isfile, os.path.getmtime(y))os.listdir(search_dir))
# note that this will provide a sorted list of files without path
= [os.path.join(search_dir, f) for f in files] # to add the path you can use os.path.join(search_dirto each file
files.sort(lambda x,y: cmp(os.path.getmtime(x), fnameos.path.getmtime(y)))
before
# using the list entries
show/hide this revision's text 3 added listdir() comments

I've done this in the past for a Python script to determine the last updated files in a directory:

import glob
import os

search_dir = "/mydir/"
files = glob.glob(search_dir + "*")
files.sort(lambda x,y: cmp(os.path.getmtime(x), os.path.getmtime(y)))

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:

import os

search_dir = "/mydir/"
os.chdir(search_dir)
files = os.listdir(search_dir)
files.sort(lambda x,y: cmp(os.path.getmtime(x), os.path.getmtime(y)))
# note that this will provide a sorted list of files without path
# to add the path you can use os.path.join(search_dir, fname) before
# using the list entries
show/hide this revision's text 2 added os.listdir() example
show/hide this revision's text 1