mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-02 17:29:22 +01:00
18 lines
529 B
Python
18 lines
529 B
Python
|
#!/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)
|