How to list only top level directories in Python? - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T06:06:17Zhttp://stackoverflow.com/feeds/question/141291http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/141291/how-to-list-only-top-level-directories-in-python2How to list only top level directories in Python?fuentesjr2008-09-26T19:01:06Z2008-09-27T02:11:40Z
<p>I want to be able to list only the directories inside some folder.
This means I don't want filenames listed, nor do I want additional sub-folders.</p>
<p>Let's see if an example helps. In the current directory we have:</p>
<pre><code>>>> os.listdir(os.getcwd())
['cx_Oracle-doc', 'DLLs', 'Doc', 'include', 'Lib', 'libs', 'LICENSE.txt', 'mod_p
ython-wininst.log', 'NEWS.txt', 'pymssql-wininst.log', 'python.exe', 'pythonw.ex
e', 'README.txt', 'Removemod_python.exe', 'Removepymssql.exe', 'Scripts', 'tcl',
'Tools', 'w9xpopen.exe']
</code></pre>
<p>However, I don't want filenames listed. Nor do I want sub-folders such as \Lib\curses. Essentially what I want works with the following:</p>
<pre><code>>>> for root, dirnames, filenames in os.walk('.'):
... print dirnames
... break
...
['cx_Oracle-doc', 'DLLs', 'Doc', 'include', 'Lib', 'libs', 'Scripts', 'tcl', 'Tools']
</code></pre>
<p>However, I'm wondering if there's a simpler way of achieving the same results. I get the impression that using os.walk only to return the top level is inefficient/too much.</p>
http://stackoverflow.com/questions/141291/how-to-list-only-top-level-directories-in-python/141313#1413136Answer by Mark Roddy for How to list only top level directories in Python?Mark Roddy2008-09-26T19:04:46Z2008-09-26T19:04:46Z<p>directories=[d for d in os.listdir(os.getcwd()) if os.path.isdir(d)]</p>
http://stackoverflow.com/questions/141291/how-to-list-only-top-level-directories-in-python/141317#1413170Answer by Just Some Guy for How to list only top level directories in Python?Just Some Guy2008-09-26T19:05:26Z2008-09-26T19:05:26Z<p>Like so?</p>
<p>>>> [path for path in os.listdir(os.getcwd()) if os.path.isdir(path)]</p>
http://stackoverflow.com/questions/141291/how-to-list-only-top-level-directories-in-python/141318#1413180Answer by Moe for How to list only top level directories in Python?Moe2008-09-26T19:05:26Z2008-09-26T19:05:26Z<pre><code>[x for x in os.listdir(somedir) if os.path.isdir(os.path.join(somedir, x))]
</code></pre>
http://stackoverflow.com/questions/141291/how-to-list-only-top-level-directories-in-python/141327#1413277Answer by Thomas Wouters for How to list only top level directories in Python?Thomas Wouters2008-09-26T19:06:57Z2008-09-26T19:06:57Z<p>Filter the result using os.path.isdir() (and use os.path.join() to get the real path):</p>
<pre><code>>>> [ name for name in os.listdir(thedir) if os.path.isdir(os.path.join(thedir, name)) ]
['ctypes', 'distutils', 'encodings', 'lib-tk', 'config', 'idlelib', 'xml', 'bsddb', 'hotshot', 'logging', 'doc', 'test', 'compiler', 'curses', 'site-packages', 'email', 'sqlite3', 'lib-dynload', 'wsgiref', 'plat-linux2', 'plat-mac']
</code></pre>
http://stackoverflow.com/questions/141291/how-to-list-only-top-level-directories-in-python/141336#1413360Answer by Colin Jensen for How to list only top level directories in Python?Colin Jensen2008-09-26T19:10:36Z2008-09-26T19:10:36Z<p>Filter the list using os.path.isdir to detect directories.</p>
<pre><code>>>> filter (os.path.isdir, os.listdir(os.getcwd()))`
</code></pre>
http://stackoverflow.com/questions/141291/how-to-list-only-top-level-directories-in-python/142368#1423682Answer by ΤΖΩΤΖΙΟΥ for How to list only top level directories in Python?ΤΖΩΤΖΙΟΥ2008-09-26T22:32:50Z2008-09-27T02:11:40Z<p>Note that, instead of doing <code>os.listdir(os.getcwd())</code>, it's preferable to do <code>os.listdir(os.path.curdir)</code>. One less function call, and it's as portable.</p>
<p>So, to complete the answer, to get a list of directories in a folder:</p>
<pre><code>def listdirs(folder):
return [d for d in os.listdir(folder) if os.path.isdir(os.path.join(folder, d))]
</code></pre>
<p>If you prefer full pathnames, then use this function:</p>
<pre><code>def listdirs(folder):
return [
d for d in (os.path.join(folder, d1) for d1 in os.listdir(folder))
if os.path.isdir(d)
]
</code></pre>
http://stackoverflow.com/questions/141291/how-to-list-only-top-level-directories-in-python/142535#1425352Answer by fivebells for How to list only top level directories in Python?fivebells2008-09-26T23:57:04Z2008-09-26T23:57:04Z<pre><code>os.walk('.').next()[1]
</code></pre>