Пример #1
0
	def __init__(self, store_location):
		FileSystemBase.__init__(self)
		self.root = store_location
		if not os.path.exists(self.root):
			os.mkdir(self.root)
Пример #2
0
	def __init__(self, f):
		FileSystemBase.__init__(self)
		self.zip = zipfile.ZipFile(f, "w")