Re: Recursive wildcard file search

2008-07-06 Thread Simon Brunning
2008/7/4 Gerhard Häring <[EMAIL PROTECTED]>: > Robert Dailey wrote: >> Is there a way to perform a recursive file search using wildcards in >> python 3.0b1? [...] > > glob.glob() or glob.iglob(). glob's not recursive AFAIK. This recipe probably still works under Pythion 3K, though:

Re: Recursive wildcard file search

2008-07-04 Thread Tim Golden
[sorry; this got stuck in my outbox] Robert Dailey wrote: Is there a way to perform a recursive file search using wildcards in python 3.0b1? For example, if I have: C:\foo\abc*xyz.* I want all files in C:\foo and all subfolders (recursively) of C:\foo that match the wildcard abc*xyz.* to be

Re: Recursive wildcard file search

2008-07-04 Thread Gerhard Häring
Robert Dailey wrote: Hi, Is there a way to perform a recursive file search using wildcards in python 3.0b1? [...] glob.glob() or glob.iglob(). -- Gerhard -- http://mail.python.org/mailman/listinfo/python-list

Recursive wildcard file search

2008-07-03 Thread Robert Dailey
Hi, Is there a way to perform a recursive file search using wildcards in python 3.0b1? For example, if I have: C:\foo\abc*xyz.* I want all files in C:\foo and all subfolders (recursively) of C:\foo that match the wildcard abc*xyz.* to be matched. In the end, I want a list of files that matched