コード例 #1
0
 def loadTraces(self):
     tracesPaths = os.listdir(self.directoryPath)
     for tracePath in tracesPaths:
         path = os.path.join(self.directoryPath, tracePath)
         t = Trace(path)
         t.loadTrace()
         self.traces.append(t)
コード例 #2
0
 def loadTraces(self) :
     tracesPaths=os.listdir(self.directoryPath)
     for tracePath in tracesPaths :
         path=os.path.join(self.directoryPath,tracePath)
         t=Trace(path)
         t.loadTrace()
         self.traces.append(t)