Mercurial > dive4elements > river
view flys-backend/contrib/shpimporter/utils.py @ 2877:f0a67bc0e777 2.7
merged flys-backend/2.7
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Fri, 28 Sep 2012 12:14:31 +0200 |
parents | 5a654f2e35bc |
children | 59ca5dab2782 |
line wrap: on
line source
import os SHP='.shp' def findShapefiles(path): shapes = [] for root, dirs, files in os.walk(path): if len(files) == 0: continue print "Processing directory '%s' with %i files " % (root, len(files)) for f in files: idx = f.find(SHP) if (idx+len(SHP)) == len(f): shapes.append((f.replace(SHP, ''), root + "/" + f)) return shapes