Exemplo n.º 1
0
 def open_file(self, name, compressed=False):
     f = StructFile(open(self._fpath(name), "rb"))
     f._name = name
     return f
Exemplo n.º 2
0
 def open_file(self, name, compressed = False):
     f = StructFile(open(self._fpath(name), "rb"))
     f._name = name
     return f
Exemplo n.º 3
0
 def create_file(self, name):
     f = StructFile(open(self._fpath(name), "wb"))
     f._name = name
     return f
Exemplo n.º 4
0
 def create_file(self, name):
     f = StructFile(open(self._fpath(name), "wb"))
     f._name = name
     return f