George Sakkis wrote: > By the way, an easier way to deal with paths is the path.py module > (http://www.jorendorff.com/articles/python/path/). Your example could > be rewritten simply as: > > from path import path > for html_file in path(start_dir).walkfiles('*.html'): > print 'html file found!' >
Thanks George, I had played with it some more and ended up with the fairly succinct: [code] import os import glob for f in glob.glob('c:\\intent\\docn\\*\\*.html'): print f [/code] It works quite nicely - I'm just twiddling - first time writing Python (but like it) :) I've bookmarked that site too for future ref. Thanks again, Tony -- http://mail.python.org/mailman/listinfo/python-list