The os.walk function walks the operating systems directory tree. This seems to work, but I don't quite understand the tupple that is returned... Can someone explain please?
for root, dirs, files in os.walk('/directory/'): print root # print dirs # print files -- http://mail.python.org/mailman/listinfo/python-list