Mercurial > python-cmd2
annotate docs/pycon2010/fileutil.py @ 436:c4c35f002aef 0.6.4
to version 0.6.4
author | catherine.devlin@gmail.com |
---|---|
date | Thu, 25 Aug 2011 16:27:42 -0400 |
parents | e84703583996 |
children |
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'): |
371 | 5 (dirpath, fname) = os.path.split(fullfilename) |
370 | 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() |