From: Jack Jansen Date: Tue, 23 Jan 2001 22:45:52 +0000 (+0000) Subject: Ah well, why not check this in. A script to remove all .pyc files in a folder hierarchy. X-Git-Tag: v2.1a2~250 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=dfebb2786a2b5a3c122ea3ca9f009515affef8d3;p=thirdparty%2FPython%2Fcpython.git Ah well, why not check this in. A script to remove all .pyc files in a folder hierarchy. --- diff --git a/Mac/scripts/zappycfiles.py b/Mac/scripts/zappycfiles.py new file mode 100644 index 000000000000..dbe95b674ac5 --- /dev/null +++ b/Mac/scripts/zappycfiles.py @@ -0,0 +1,35 @@ +# Zap .pyc files +import os +import sys + +doit = 1 + +def main(): + if os.name == 'mac': + import macfs + fss, ok = macfs.GetDirectory('Directory to zap pyc files in') + if not ok: + sys.exit(0) + dir = fss.as_pathname() + zappyc(dir) + else: + if not sys.argv[1:]: + print 'Usage: zappyc dir ...' + sys.exit(1) + for dir in sys.argv[1:]: + zappyc(dir) + +def zappyc(dir): + os.path.walk(dir, walker, None) + +def walker(dummy, top, names): + for name in names: + if name[-4:] == '.pyc': + path = os.path.join(top, name) + print 'Zapping', path + if doit: + os.unlink(path) + +if __name__ == '__main__': + main() +