Home
last modified time | relevance | path

Searched refs:newFile (Results 1 – 5 of 5) sorted by relevance

/developtools/integration_verification/tools/fotff/pkg/gitee_common/
Dcommon.go128 var newFile string
130 newFile = m.getNewerFromCI(cur + ".tar.gz")
132 newFile = m.getNewerFileFromDir(cur+".tar.gz", func(files []os.DirEntry, i, j int) bool {
139 dirName := strings.TrimSuffix(newFile, ".tar.gz")
144 logrus.Infof("extracting %s to %s...", filepath.Join(m.ArchiveDir, newFile), dir)
145 if err := ex.Extract(filepath.Join(m.ArchiveDir, newFile), dir); err != nil {
Dget_newer_or_fail.go32 newFile := m.getNewerOrFailFromCI(cur + ".tar.gz")
34 dirName := strings.TrimSuffix(newFile, ".tar.gz")
39 logrus.Infof("extracting %s to %s...", filepath.Join(m.ArchiveDir, newFile), dir)
40 if err := ex.Extract(filepath.Join(m.ArchiveDir, newFile), dir); err != nil {
/developtools/packing_tool/adapter/ohos/
DFileUtils.java231 File newFile = new File(filePath); in unzip() local
232 File parent = newFile.getParentFile(); in unzip()
237 fos = new FileOutputStream(newFile); in unzip()
/developtools/hdc/src/common/
Dbase.h59 …int WriteBinFile(const char *pathName, const uint8_t *buf, const size_t bufLen, bool newFile = fal…
Dbase.cpp803 int WriteBinFile(const char *pathName, const uint8_t *buf, const size_t bufLen, bool newFile) in WriteBinFile() argument
808 if (newFile) { in WriteBinFile()