From a68bfe29ecf584d8cc3862b6049a299ba08d637e Mon Sep 17 00:00:00 2001 From: Jack Jansen Date: Mon, 7 Aug 1995 14:09:27 +0000 Subject: [PATCH] Added missing walk() function --- Lib/macpath.py | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/Lib/macpath.py b/Lib/macpath.py index 2eddf5aeeec..32bf14752cd 100644 --- a/Lib/macpath.py +++ b/Lib/macpath.py @@ -131,3 +131,22 @@ def exists(s): def normpath(s): return s + +# Directory tree walk. +# For each directory under top (including top itself), +# func(arg, dirname, filenames) is called, where +# dirname is the name of the directory and filenames is the list +# of files (and subdirectories etc.) in the directory. +# The func may modify the filenames list, to implement a filter, +# or to impose a different order of visiting. + +def walk(top, func, arg): + try: + names = mac.listdir(top) + except mac.error: + return + func(arg, top, names) + for name in names: + name = join(top, name) + if isdir(name): + walk(name, func, arg)