Lines Matching refs:dstPath
137 dstPath = os.path.join(EXTERNAL_DIR, self.baseDir, self.archiveDir, self.filename)
142 if not os.path.exists(os.path.dirname(dstPath)):
143 os.makedirs(os.path.dirname(dstPath))
145 writeBinaryFile(dstPath, data)
152 dstPath = os.path.join(EXTERNAL_DIR, self.baseDir, self.extractDir)
173 if not os.path.exists(dstPath):
174 os.mkdir(dstPath)
177 if os.path.exists(os.path.join(dstPath, entry)):
180 shutil.move(os.path.join(topLevelPath, entry), dstPath)
185 self.postExtract(dstPath)
230 dstPath = os.path.join(EXTERNAL_DIR, self.baseDir, self.extractDir, self.filename)
235 if not os.path.exists(os.path.dirname(dstPath)):
236 os.mkdir(os.path.dirname(dstPath))
238 writeBinaryFile(dstPath, data)