Skip to content

Instantly share code, notes, and snippets.

@maluta
Last active December 18, 2015 19:38
Show Gist options
  • Select an option

  • Save maluta/5834059 to your computer and use it in GitHub Desktop.

Select an option

Save maluta/5834059 to your computer and use it in GitHub Desktop.
#!/usr/bin/python
import os
diretorios = [ name for name in os.listdir(os.getcwd()) if os.path.isdir(os.path.join(os.getcwd(), name)) ]
for i in diretorios:
print i
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment