File: makeclean.py

package info (click to toggle)
python2.1 2.1.3dfsg-1sarge1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 38,028 kB
  • ctags: 64,228
  • sloc: python: 186,023; ansic: 184,754; xml: 43,435; sh: 12,381; makefile: 3,523; perl: 3,108; lisp: 2,460; cpp: 106; sed: 2
file content (59 lines) | stat: -rw-r--r-- 1,148 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
"""	  ***DANGEROUS***
	  script to remove 
	  all results of a 
	   build process. 

	    ***Don't*** 
	run this if you are
	     ***not***
	  building Python 
	  from the source
	        !!!
"""

import macfs
import os
import sys
import re

sweepfiletypes = [
	'APPL', 	# applications
	'Atmp',		# applet template
	'shlb', 	# shared libs
	'MPSY',		# SYM and xSYM files
	'PYC ',		# .pyc files
	]

sweepfolderre = re.compile(r"(.*) Data$")


def remove(top):
	if os.path.isdir(top):
		for name in os.listdir(top):
			path = os.path.join(top, name)
			remove(path)
	os.remove(top)


def walk(top):
	if os.path.isdir(top):
		m = sweepfolderre.match(top)
		if m and os.path.exists(m.group(1) + ".prj"):
			print "removing folder:", top
			remove(top)
		else:
			for name in os.listdir(top):
				path = os.path.join(top, name)
				walk(path)
	else:
		fss = macfs.FSSpec(top)
		cr, tp = fss.GetCreatorType()
		if tp in sweepfiletypes and top <> sys.executable:
			print "removing file:  ", top
			remove(top)
		

fss, ok = macfs.GetDirectory("Please locate the Python home directory")
if ok:
	walk(fss.as_pathname())
	sys.exit(1)  # so we see the results