Mercurial > python-cmd2
annotate docs/pycon2010/fileutil.py @ 370:cd25e114fbc1
shorter fileutil
author | cat@eee |
---|---|
date | Thu, 18 Feb 2010 16:20:30 -0500 |
parents | bc4b956d57b6 |
children | e84703583996 |
rev | line source |
---|---|
370 | 1 import glob |
367 | 2 import os.path |
3 | |
370 | 4 for fullfilename in glob.glob('/home/cat/proj/cmd2/*.py'): |
5 dirpath, fname) = os.path.split(fullfilename) | |
6 stats = os.stat(fullfilename) | |
7 binds['path'] = dirpath | |
8 binds['name'] = fname | |
9 binds['bytes'] = stats.st_size | |
10 cmd("""INSERT INTO cat.files (path, name, bytes) | |
11 VALUES (%(path)s, %(name)s, %(bytes)s)""") | |
12 quit() |