def __init__(self, store_location): FileSystemBase.__init__(self) self.root = store_location if not os.path.exists(self.root): os.mkdir(self.root)
def __init__(self, f): FileSystemBase.__init__(self) self.zip = zipfile.ZipFile(f, "w")