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 can I use wild cars like '*' when getting a list of files inside a directory in Python? for example, I want something like:

os.listdir('foo/*bar*/*.txt') 

which would return a list of all the files ending in .txt in directories that have bar in their name inside of the foo parent directory.

how can I do this?

thanks.

share|improve this question

1 Answer

up vote 11 down vote accepted

glob.glob for the win.

share|improve this answer
or glob.iglob() – J.F. Sebastian Jun 11 '10 at 20:02

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.