Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How do I get a list of all files (and directories) in a given directory in Python?

share|improve this question

8 Answers

up vote 273 down vote accepted

This is a way to traverse every file and directory in a directory tree:

import os

for dirname, dirnames, filenames in os.walk('.'):
    # print path to all subdirectories first.
    for subdirname in dirnames:
        print os.path.join(dirname, subdirname)

    # print path to all filenames.
    for filename in filenames:
        print os.path.join(dirname, filename)

    # Advanced usage:
    # editing the 'dirnames' list will stop os.walk() from recursing into there.
    if '.git' in dirnames:
        # don't go into any .git directories.
        dirnames.remove('.git')
share|improve this answer
10  
And if you run this code (as is) from the Python Shell, recall that Ctrl+C will halt output to said shell. ;) – gary Dec 13 '11 at 17:56
14  
This will recursively list files and directories – rds Jan 5 '12 at 9:27
2  
A very elegant and simple answer, and very useful as well. Thank You for such a wonderful post. – Prateek Feb 2 '12 at 12:38
1  
@bugloaf: Could you explain your last comment a bit more? – Clément Jan 4 at 19:02
2  
@Clément "When topdown is True, the caller can modify the dirnames list in-place (perhaps using del or slice assignment), and walk() will only recurse into the subdirectories whose names remain in dirnames; this can be used to prune the search, impose a specific order of visiting, or even to inform walk() about directories the caller creates or renames before it resumes walk() again." from docs.python.org/2/library/os.html#os.walk – bugloaf Feb 13 at 18:08
show 3 more comments

You can use

os.listdir(path)

See more os functions here: http://docs.python.org/lib/os-file-dir.html

share|improve this answer
import os

for filename in os.listdir("C:\\temp"):
    print  filename
share|improve this answer
11  
Pass it a Unicode string to get Unicode return value. – Craig McQueen Sep 5 '09 at 22:28
5  
r'C:\temp' is clearer and preferred to "C:\\temp" Rawstrings are preferable to escpaing backslashes. – smci Aug 26 '12 at 2:07

Here's a helper function I use quite often:

import os

def listdir_fullpath(d):
    return [os.path.join(d, f) for f in os.listdir(d)]
share|improve this answer
3  
What does this do? – GavinR Aug 31 '10 at 19:39
3  
@GavinR: It does what the OP wanted. – martineau Dec 20 '11 at 18:18

Try this:

import os
for top, dirs, files in os.walk('./'):
    for nm in files:       
        print os.path.join(top, nm)
share|improve this answer
In one line: [top + os.sep + f for top, dirs, files in os.walk('./') for f in files] – J. Peterson Apr 23 at 21:10

If you need globbing abilities, there's a module for that as well. For example:

import glob
glob.glob('./[0-9].*')

will return something like:

['./1.gif', './2.txt']

See the documentation here.

share|improve this answer

I wrote a long version, with all the options I might need: http://sam.nipl.net/code/python/find.py

I guess it will fit here too:

#!/usr/bin/env python

import os
import sys

def ls(dir, hidden=False, relative=True):
    nodes = []
    for nm in os.listdir(dir):
        if not hidden and nm.startswith('.'):
            continue
        if not relative:
            nm = os.path.join(dir, nm)
        nodes.append(nm)
    nodes.sort()
    return nodes

def find(root, files=True, dirs=False, hidden=False, relative=True, topdown=True):
    root = os.path.join(root, '')  # add slash if not there
    for parent, ldirs, lfiles in os.walk(root, topdown=topdown):
        if relative:
            parent = parent[len(root):]
        if dirs and parent:
            yield os.path.join(parent, '')
        if not hidden:
            lfiles   = [nm for nm in lfiles if not nm.startswith('.')]
            ldirs[:] = [nm for nm in ldirs  if not nm.startswith('.')]  # in place
        if files:
            lfiles.sort()
            for nm in lfiles:
                nm = os.path.join(parent, nm)
                yield nm

def test(root):
    print "* directory listing, with hidden files:"
    print ls(root, hidden=True)
    print
    print "* recursive listing, with dirs, but no hidden files:"
    for f in find(root, dirs=True):
        print f
    print

if __name__ == "__main__":
    test(*sys.argv[1:])
share|improve this answer
#import modules
import os

_CURRENT_DIR = '.'


def rec_tree_traverse(curr_dir, indent):
    "recurcive function to traverse the directory"
    #print "[traverse_tree]"

    try :
        dfList = [os.path.join(curr_dir, f_or_d) for f_or_d in os.listdir(curr_dir)]
    except:
        print "wrong path name/directory name"
        return

    for file_or_dir in dfList:

        if os.path.isdir(file_or_dir):
            #print "dir  : ",
            print indent, file_or_dir,"\\"
            rec_tree_traverse(file_or_dir, indent*2)

        if os.path.isfile(file_or_dir):
            #print "file : ",
            print indent, file_or_dir

    #end if for loop
#end of traverse_tree()

def main():

    base_dir = _CURRENT_DIR

    rec_tree_traverse(base_dir," ")

    raw_input("enter any key to exit....")
#end of main()


if __name__ == '__main__':
    main()
share|improve this answer
This question already has a perfectly good answer, there is no need to answer again – Mike Pennington Nov 23 '12 at 11:57

protected by jamylak Apr 11 at 8:25

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.