How to list only top level directories in Python? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T06:06:17Z http://stackoverflow.com/feeds/question/141291 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/141291/how-to-list-only-top-level-directories-in-python 2 How to list only top level directories in Python? fuentesjr 2008-09-26T19:01:06Z 2008-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>&gt;&gt;&gt; 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>&gt;&gt;&gt; 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#141313 6 Answer by Mark Roddy for How to list only top level directories in Python? Mark Roddy 2008-09-26T19:04:46Z 2008-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#141317 0 Answer by Just Some Guy for How to list only top level directories in Python? Just Some Guy 2008-09-26T19:05:26Z 2008-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#141318 0 Answer by Moe for How to list only top level directories in Python? Moe 2008-09-26T19:05:26Z 2008-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#141327 7 Answer by Thomas Wouters for How to list only top level directories in Python? Thomas Wouters 2008-09-26T19:06:57Z 2008-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>&gt;&gt;&gt; [ 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#141336 0 Answer by Colin Jensen for How to list only top level directories in Python? Colin Jensen 2008-09-26T19:10:36Z 2008-09-26T19:10:36Z <p>Filter the list using os.path.isdir to detect directories.</p> <pre><code>&gt;&gt;&gt; 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#142368 2 Answer by ΤΖΩΤΖΙΟΥ for How to list only top level directories in Python? ΤΖΩΤΖΙΟΥ 2008-09-26T22:32:50Z 2008-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#142535 2 Answer by fivebells for How to list only top level directories in Python? fivebells 2008-09-26T23:57:04Z 2008-09-26T23:57:04Z <pre><code>os.walk('.').next()[1] </code></pre>