A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://mail.python.org/pipermail/python-dev/2003-May/035590.html below:

[Python-Dev] os.path.walk() lacks 'depth first' option

[Python-Dev] os.path.walk() lacks 'depth first' option [Python-Dev] os.path.walk() lacks 'depth first' optionTim Peters tim@zope.com
Tue, 13 May 2003 13:19:48 -0400
[Walter D=F6rwald]
> True, getting a list of files in the current directory even works
> with the current os.walk:
>
> sum([[os.path.join(x[0], f) for f in x[2]] for x in os.walk(".")], [])

Convoluted one-liners are poor Python style, IMO.  That walks the entire
tree, too.  If you want the files in just the current directory,

    for root, dirs, files in os.walk('.'):
        break
    print files

or if clarity is disturbing <wink>:

    files =3D os.walk('.').next()[-1]




RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4