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.

Given the piece of code:

from glob import glob, iglob

for fn in glob('/*'):
    print fn

print ''

for fn in iglob('/*'):
    print fn

Reading the documentation for glob I see that glob() returns a basic list of files and iglob an Iterator. However I'm able to iterate over both and the same list of files is returned by each of them.

I've read the documentation on Iterator but it hasn't shed anymore light on the subject really!

So what benefit does iglob() returning an Iterator provide me over the list from glob()? Do I gain extra functionality over my old friend the lowly list?

share|improve this question

1 Answer

up vote 4 down vote accepted

The difference is mentioned in the documentation itself:

Return an iterator which yields the same values as glob() without actually storing them all simultaneously.

Basically list will have all the items in memory. Iterator need not, and hence it requires less memory.

share|improve this answer
Just add that it is called 'lazy evaluation'. We don't do something until we don't need it. – demas Nov 26 '10 at 17:00
Note: for a single directory the memory use is the same (due to current implementation via os.listdir()). The advantage is present if there are multiple directories with many files. – J.F. Sebastian Nov 26 '10 at 18:13
Like @J.F.Sebastian said, iglob speed/memory advantage over glob is hampered by os.listdir() (see this ): this means that they will both be slow over directories with lots of files. If you have that problem, check out formic. Example here. – Luca Invernizzi Aug 14 '12 at 19:09
@LucaInvernizzi: I've not mention speed at all. glob supports ** too. It seems formic uses os.walk that uses os.listdir(). For the link you provided it is unclear where the bottleneck is filesystem or python. You could try readdir() or even getdents() to read millions of files at a single level – J.F. Sebastian Aug 14 '12 at 19:53

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.