Staging
v0.8.1
Revision 4fdd1fafb2346e315009183e33c01f6fc42862be authored by Guido van Rossum on 10 December 1997, 05:50:55 UTC, committed by Guido van Rossum on 10 December 1997, 05:50:55 UTC
1 parent d666eae
Raw File
sumtree.py
import time
import FSProxy

def main():
	t1 = time.time()
	#proxy = FSProxy.FSProxyClient(('voorn.cwi.nl', 4127))
	proxy = FSProxy.FSProxyLocal()
	sumtree(proxy)
	proxy._close()
	t2 = time.time()
	print t2-t1, "seconds"
	raw_input("[Return to exit] ")

def sumtree(proxy):
	print "PWD =", proxy.pwd()
	files = proxy.listfiles()
	proxy.infolist(files)
	subdirs = proxy.listsubdirs()
	for name in subdirs:
		proxy.cd(name)
		sumtree(proxy)
		proxy.back()

main()
back to top