diff --git a/clean.py b/clean.py new file mode 100644 index 000000000..2c2b47770 --- /dev/null +++ b/clean.py @@ -0,0 +1,25 @@ +import os + +to_delete = [ + 'session_stats', + 'libtorrent_logs*', + 'round_trip_ms.log', + 'dht.log', + 'upnp.log', + 'natpmp.log', + 'bin' +] + +directories = [ + 'examples', + 'test', + '.', + 'tools' +] + +for d in directories: + for f in to_delete: + path = os.path.join(d, f) + print path + os.system('rm -rf %s' % path) +