Mercurial > python-cmd2
changeset 370:cd25e114fbc1
shorter fileutil
author | cat@eee |
---|---|
date | Thu, 18 Feb 2010 16:20:30 -0500 |
parents | bc4b956d57b6 |
children | e84703583996 |
files | docs/pycon2010/fileutil.py |
diffstat | 1 files changed, 10 insertions(+), 11 deletions(-) [+] |
line wrap: on
line diff
--- a/docs/pycon2010/fileutil.py Thu Feb 18 16:13:10 2010 -0500 +++ b/docs/pycon2010/fileutil.py Thu Feb 18 16:20:30 2010 -0500 @@ -1,13 +1,12 @@ -import os +import glob import os.path -for (dirpath, dirnames, filenames) in os.walk('/home/cat/proj/sqlpython/sqlpython'): - for fname in filenames: - fullfilename = os.path.join(dirpath, fname) - 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() +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()