Mercurial > python-cmd2
view docs/pycon2010/fileutil.py @ 395:9f9c69fbb78f
swallow xclip error
author | catherine.devlin@gmail.com |
---|---|
date | Tue, 07 Sep 2010 07:25:49 -0400 |
parents | e84703583996 |
children |
line wrap: on
line source
import glob import os.path for fullfilename in glob.glob('/home/cat/proj/cmd2/*.py'): (dirpath, fname) = os.path.split(fullfilename) stats = os.stat(fullfilename) binds['path'] = dirpath binds['name'] = fname binds['bytes'] = stats.st_size cmd("""INSERT INTO cat.files (path, name, bytes) VALUES (%(path)s, %(name)s, %(bytes)s)""") quit()