Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I find all files in directory with the extension .txt in python?

share|improve this question
1  
possible duplicate of Directory listing in Python – S.Lott Oct 19 '10 at 2:25
19  
S.Lott: Take a look at the other questions I've asked, I'm not new to programming (nor do I do homework), just python. If you find the question too easy to answer there's plenty of others to relieve your boredom. – usertest Oct 19 '10 at 3:15
4  
The question you pointed to was not the same question that I asked, but thats irrelevant. If other people felt the same way you do they wouldn't answer, but they did. And now this page has more excellent examples for this question then anywhere else. Other people can decide if they prefer this page to similar pages, which is part of the function of stackoverflow. Google doesn't answer questions, it points to fantastically useful pages like this one. – usertest Oct 19 '10 at 15:00
5  
@S.Lott your comments are well intended, but some people want to ask their own questions and get answers and coding ideas. Which you cant google. – Merlin Oct 19 '10 at 15:25
12  
Type in "find all files with txt extension" or a similar query into google and this page now comes up top with by far the best example code. Much better then the manual itself. Which I think is the point. Unless you can find somewhere with better examples then this, its not a "duplicate". If this question holds no relevence to you, then iqnore it, plenty of people will find this page as uniquely useful as I do. – usertest Oct 22 '10 at 22:24
show 2 more comments

8 Answers

up vote 158 down vote accepted

you can use glob

import glob
import os
os.chdir("/mydir")
for files in glob.glob("*.txt"):
    print files

or simple os.listdir

import os
os.chdir("/mydir")
for files in os.listdir("."):
    if files.endswith(".txt"):
        print files

or if you want to traverse directory

import os
for r,d,f in os.walk("/mydir"):
    for files in f:
        if files.endswith(".txt"):
             print os.path.join(r,files)
share|improve this answer
Using solution #2, How would you create a file or list with that info? – Merlin Oct 19 '10 at 3:48
1  
user428862: its not to create files, but to list files in a directory – usertest Oct 19 '10 at 3:51
don't understand. elaborate more. – ghostdog74 Oct 19 '10 at 4:13
8  
@ghostdog74: In my opinion it would more appropriate to write for file in f than for for files in f since what is in the variable is a single filename. Even better would be to change the f to files and then the for loops could become for file in files. – martineau Oct 26 '10 at 14:18
4  
@computermacgyver: No, file is not a reserved word, just the name of a predefined function, so it's quite possible to use it as a variable name in your own code. Although it's true that generally one should avoid collisions like that, file is a special case because there's hardly ever any need to to use it, so it is often consider an exception to the guideline. If you don't want to do that, PEP8 recommends appending a single underscore to such names, i.e. file_, which you'd have to agree is still quite readable. – martineau Oct 14 '12 at 19:04
show 10 more comments

Use glob.

>>> import glob
>>> glob.glob('./*.txt')
['./outline.txt', './pip-log.txt', './test.txt', './testingvim.txt']
share|improve this answer

Something like that should do the job

for root, dirs, files in os.walk(directory):
    for file in files:
        if file.endswith('.txt')
            print file
share|improve this answer
2  
+1 for naming your variables root, dirs, files instead of r, d, f. Much more readable. – Clément Jan 4 at 18:31
+1 for mentioning .endswith. Cheers. – Gabriel May 8 at 18:57

Something like this will work:

>>> import os
>>> path = '/usr/share/cups/charmaps'
>>> text_files = [f for f in os.listdir(path) if f.endswith('.txt')]
>>> text_files
['euc-cn.txt', 'euc-jp.txt', 'euc-kr.txt', 'euc-tw.txt', ... 'windows-950.txt']
share|improve this answer

I like os.walk():

import os, os.path

for root, dirs, files in os.walk(dir):
    for f in files:
        fullpath = os.path.join(root, f)
        if os.path.splitext(fullpath)[1] == '.txt':
            print fullpath

Or with generators:

import os, os.path

fileiter = (os.path.join(root, f)
    for root, _, files in os.walk(dir)
    for f in files)
txtfileiter = (f for f in fileiter if os.path.splitext(f)[1] == '.txt')
for txt in txtfileiter:
    print txt
share|improve this answer

Here's more versions of the same that produce slightly different results:

glob.iglob()

import glob
for f in glob.iglob("/mydir/*/*.txt"): # generator, search immediate subdirectories 
    print f

glob.glob1()

print glob.glob1("/mydir", "*.tx?")  # literal_directory, basename_pattern

fnmatch.filter()

import fnmatch, os
print fnmatch.filter(os.listdir("/mydir"), "*.tx?") # include dot-files
share|improve this answer
For the curious, glob1() is a helper function in the glob module which isn't listed in the Python documentation. There's some inline comments describing what it does in the source file, see .../Lib/glob.py. – martineau Oct 26 '10 at 14:03
@martineau: glob.glob1() is not public but it is available on Python 2.4-2.7;3.0-3.2; pypy; jython github.com/zed/test_glob1 – J.F. Sebastian Oct 26 '10 at 23:15
Thanks, that's good additional information to have when deciding whether to use a undocumented private function in a module. ;-) Here's a little more. The Python 2.7 version is only 12 lines long and looks like it could easily be extracted from the glob module. – martineau Oct 27 '10 at 0:30
import os
import sys 

if len(sys.argv)==2:
    print('no params')
    sys.exit(1)

dir = sys.argv[1]
mask= sys.argv[2]

files = os.listdir(dir); 

res = filter(lambda x: x.endswith(mask), files); 

print res
share|improve this answer

path.py is another alternative: https://github.com/jaraco/path.py

from path import path
p = path('/path/to/the/directory')
for f in p.files(pattern='*.txt'):
    print f
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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