If I have os.path.walk(name, processDirectory, None) and processDirectory needs three arguments how can I ass them because walk only takes 3?
The best answer to this is: if you aren't stuck using a version of Python prior to 2.4, don't use os.path.walk but use os.walk() instead...
-Peter -- http://mail.python.org/mailman/listinfo/python-list