os.walk gives an object with all files in a tree, e.g.
f = os.walk('c:\\temp')
for i in f:
        print i

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to