> > Does anyone see anything immediately suspicious about the code? Yes. os.walk does the recursion for you. Either you should use os.listdir instead of os.walk, or use os.walk ONCE and iterate over the results. I prefer to use the former because usually I do not remember how os.walk works. Read and try the example that is given in the docs:
http://docs.python.org/lib/os-file-dir.html Best, Laszlo -- http://mail.python.org/mailman/listinfo/python-list