def export_files(self, files, destination, fmt=CONSTS.TEXT_FMT):
     """ Export a list of cache files """
     (self.files, startindex, end) = get_files(files)
     self.destination_folder = destination
     self.state = self.STOP
     self.t1 = 0
     self.t2 = 0
     self.fmt = fmt
     self._start()
 def export_files( self, files, destination, fmt=CONSTS.TEXT_FMT):    
     """ Export a list of cache files """
     (self.files,startindex,end) = get_files(files)
     self.destination_folder = destination
     self.state = self.STOP
     self.t1 = 0
     self.t2 = 0
     self.fmt = fmt
     self._start()
Beispiel #3
0
 def load_files( self, files ):
     """ Load one or multiple cache files. """        
     (files, startcache, endcache) = get_files( files )
     self._load_icecache_files( files, startcache, endcache )