vote up 15 vote down star
6

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

flag

5 Answers

vote up 10 vote down check

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

import os

for dirname, dirnames, filenames in os.walk('.'):
    for subdirname in dirnames:
        print os.path.join(dirname, subdirname)
    for filename in filenames:
        print os.path.join(dirname, filename)
link|flag
vote up 13 vote down

You can use os.listdir(path). See more os functions here: http://docs.python.org/lib/os-file-dir.html

link|flag
vote up 6 vote down
import os



for filename in os.listdir("C:\\temp"):
    print  filename
link|flag
Pass it a Unicode string to get Unicode return value. – Craig McQueen Sep 5 at 22:28
vote up 1 vote down

Try this:

import os
for top, dirs, files in os.walk('./'):
    for nm in files:       
        print os.path.join(top, nm)
link|flag
vote up 1 vote down

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)]
link|flag

Your Answer

Get an OpenID
or

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