Home
last modified time | relevance | path

Searched refs:tmpDataPath (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/foundation/filemanagement/app_file_service/tools/backup_tool/src/
H A Dtools_op_incremental_restore_async.cpp276 string tmpDataPath = tmpPath + string(BConstants::BACKUP_TOOL_INCREMENTAL); in RestoreApp() local
277 if (access(tmpDataPath.data(), F_OK) != 0 && mkdir(tmpDataPath.data(), S_IRWXU) != 0) { in RestoreApp()
282 AdapteCloneOptimize(tmpDataPath); in RestoreApp()
292 …string manageJsonStr = tmpDataPath + BConstants::FILE_SEPARATOR_CHAR + string(BConstants::EXT_BACK… in RestoreApp()
H A Dtools_op_incremental_backup.cpp149 string tmpDataPath = tmpPath + string(BConstants::BACKUP_TOOL_INCREMENTAL); in OnFileReady() local
150 if (access(tmpDataPath.data(), F_OK) != 0 && mkdir(tmpDataPath.data(), S_IRWXU) != 0) { in OnFileReady()
153 …UniqueFd fdLocal(open((tmpDataPath + "/" + fileInfo.fileName).data(), O_WRONLY | O_CREAT | O_TRUNC… in OnFileReady()