Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

Reinis Ivanovs http://untu.ms/

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

walk a path

   1  
   2  #!/usr/bin/env python
   3  
   4  import os
   5  
   6  from os.path import isdir, abspath, join
   7  from glob import iglob
   8  
   9  
  10  def walk(name='.'):
  11      print abspath(name)
  12      for item in iglob(join(name, '*')):
  13          if isdir(item):
  14              walk(item)
  15          else:
  16              print abspath(item)
  17  
  18  
  19  if __name__ == '__main__':
  20      walk()
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS