2003-03-12 07:26:59 +01:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
import os, sys, os.path, shutil
|
|
|
|
|
|
|
|
def removeFiles(arg, dirname, names):
|
|
|
|
for name in names:
|
|
|
|
if name[-4:] in ('.pyc', 'pyo'):
|
|
|
|
os.remove(os.path.join(dirname, name))
|
|
|
|
elif name[-1] == '~':
|
|
|
|
os.remove(os.path.join(dirname, name))
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
for name in os.listdir('logs'):
|
|
|
|
os.remove(os.path.join('logs', name))
|
|
|
|
for name in os.listdir('conf'):
|
|
|
|
os.remove(os.path.join('conf', name))
|
|
|
|
os.path.walk(os.curdir, removeFiles, None)
|
2003-03-24 09:41:19 +01:00
|
|
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|