os.path.walk

Peter Hansen peter at engcorp.com
Wed Apr 13 08:59:46 EDT 2005


Micheal wrote:
> 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



More information about the Python-list mailing list