I am trying to do something to all the files under a given path. I don't want to collect all the file names beforehand then do something with them, so I tried this:

import os
import stat

def explore(p):
  s = ''
  list = os.listdir(p)
  for a in list:
    path = p + '/' + a
    stat_info = os.lstat(path )
    if stat.S_ISDIR(stat_info.st_mode):
     explore(path)
    else:
      yield path

if __name__ == "__main__":
  for x in explore('.'):
    print '-->', x

But this code skips over directories when it hits them, instead of yielding their contents. What am I doing wrong?

link|improve this question

feedback

7 Answers

up vote 17 down vote accepted

Use os.walk instead of reinventing the wheel.

In particular, following the examples in the library documentation, here is an untested attempt:

import os
from os.path import join

def hellothere(somepath):
    for root, dirs, files in os.walk(somepath):
        for curfile in files:
            yield join(root, curfile)


# call and get full list of results:
allfiles = [ x for x in hellothere("...") ]

# iterate over results lazily:
for x in hellothere("..."):
    print x
link|improve this answer
feedback

Iterators do not work recursively like that. You have to re-yield each result, by replacing

explore(path)

with something like

for value in explore(path):
    yield value

Python 3.3 will add the syntax yield from X, as proposed in PEP 380, to serve this purpose. You will be able to do this instead:

yield from explore(path)
link|improve this answer
4  
+1 for mentioning a 3.3 feature I wasn't previously aware of :) – phooji Jul 20 '11 at 1:12
5  
This should be the accepted answer IMHO, as the question is about yield and recursion and not about best way to implement the os.walk ;-) !!! I was breaking my head on this very simple loop... And actually all of the other answers are on the same line... – Stefano Oct 25 '11 at 12:09
2  
+1 for the link to the PEP which explains all this in much greater detail. – Mike Jan 17 at 19:25
Thanks man! Mentioning of 3.3 and iterators specific was really useful. – real4x Jan 22 at 2:39
feedback
up vote 10 down vote
+100

The problem is this line of code:

explore(path)

What does it do?

  • calls explore with the new path
  • explore runs, creating a generator
  • the generator is return to the spot where explore(path) was executed . . .
  • and is discarded

Why is it discarded? It wasn't assigned to anything, it wasn't iterated over -- it was completely ignored.

If you want to do something with the results, well, you have to do something with them! ;)

The easiest way to fix your code is:

for name in explore(path):
    yield name

When you are confident you understand what's going on, you'll probably want to use os.walk() instead.

Once you have migrated to Python 3.3 (assuming all works out as planned) you will be able to use the new yield from syntax and the easiest way to fix your code at that point will be:

yield from explore(path)
link|improve this answer
2  
+1 good explanation of why the original poster's code didn't work. – Jim DeLaHunt Jan 20 at 19:17
feedback

Change this:

explore(path)

To this:

for subpath in explore(path):
    yield subpath

Or use os.walk, as phooji suggested (which is the better option).

link|improve this answer
feedback

Try this:

if stat.S_ISDIR(stat_info.st_mode):
    for p in explore(path):
        yield p
link|improve this answer
feedback

That calls explore like a function. What you should do is iterate it like a generator:

if stat.S_ISDIR(stat_info.st_mode):
  for p in explore(path):
    yield p
else:
  yield path

EDIT: Instead of the stat module, you could use os.path.isdir(path).

link|improve this answer
feedback

os.walk is great if you need to traverse all the folders and subfolders. If you don't need that, it's like using an elephant gun to kill a fly.

However, for this specific case, os.walk could be a better approach.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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