Lines Matching refs:filePath
121 def __init__(self, filePath, sortedLines):
122 self.filePath = filePath
128 filePath = getCaseListPath(buildCfg, module, "txt")
129 with open(filePath, 'r') as first_file:
132 caseList = CaseList(filePath, lines)
285 logging.debug("Reading " + currentCaseList.filePath)
299 def openAndStoreFile(filePath, testFilePath, parentFile):
300 if filePath not in output_files:
302 print(" " + filePath)
304 currentDir = os.path.dirname(filePath)
307 output_files[filePath] = open(filePath, 'w')
310 print(f"File not found: {filePath}")
311 return output_files[filePath]
381 filePath = os.path.join(mainDstFileDir, mainGroupSubDir, groupName + ".txt")
382 if lastOutputFile != filePath:
383 currentOutputFile = openAndStoreFile(filePath, groupName + ".txt", mainDstFile)
384 lastOutputFile = filePath