Home
last modified time | relevance | path

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

/third_party/lzma/CPP/7zip/UI/Common/
DArchiveExtractCallback.cpp1144 HRESULT CArchiveExtractCallback::CheckExistFile(FString &fullProcessedPath, bool &needExit) in CheckExistFile() argument
1150 if (fileInfo.Find(fullProcessedPath)) in CheckExistFile()
1157 const int slashPos = fullProcessedPath.ReverseFind_PathSepar(); in CheckExistFile()
1158 …const FString realFullProcessedPath = fullProcessedPath.Left((unsigned)(slashPos + 1)) + fileInfo.… in CheckExistFile()
1198 if (!AutoRenamePath(fullProcessedPath)) in CheckExistFile()
1200 RINOK(SendMessageError(kCantAutoRename, fullProcessedPath)); in CheckExistFile()
1207 FString existPath (fullProcessedPath); in CheckExistFile()
1210 RINOK(SendMessageError(kCantAutoRename, fullProcessedPath)); in CheckExistFile()
1214 if (!MyMoveFile(fullProcessedPath, existPath)) in CheckExistFile()
1217 RINOK(SendMessageError2(errorCode, kCantRenameFile, existPath, fullProcessedPath)); in CheckExistFile()
[all …]
DArchiveExtractCallback.h499 HRESULT Link(const FString &fullProcessedPath);
540 HRESULT CheckExistFile(FString &fullProcessedPath, bool &needExit);
554 const FString &fullProcessedPath,
/third_party/lzma/CPP/7zip/Bundles/SFXSetup/
DExtractCallbackSfx.cpp166 FString fullProcessedPath = _directoryPath + us2fs(processedPath); in GetStream() local
170 _diskFilePath = fullProcessedPath; in GetStream()
180 if (fileInfo.Find(fullProcessedPath)) in GetStream()
182 if (!DeleteFileAlways(fullProcessedPath)) in GetStream()
193 if (!_outFileStreamSpec->Create(fullProcessedPath, true)) in GetStream()
201 _diskFilePath = fullProcessedPath; in GetStream()
/third_party/lzma/CPP/7zip/UI/Client7z/
DClient7z.cpp469 FString fullProcessedPath = _directoryPath + us2fs(_filePath); in GetStream() local
470 _diskFilePath = fullProcessedPath; in GetStream()
474 CreateComplexDir(fullProcessedPath); in GetStream()
479 if (fi.Find(fullProcessedPath)) in GetStream()
481 if (!DeleteFileAlways(fullProcessedPath)) in GetStream()
483 PrintError("Cannot delete output file", fullProcessedPath); in GetStream()
490 if (!_outFileStreamSpec->Open(fullProcessedPath, CREATE_ALWAYS)) in GetStream()
492 PrintError("Cannot open output file", fullProcessedPath); in GetStream()
/third_party/lzma/CPP/7zip/Common/
DFilePathAutoRename.h8 bool AutoRenamePath(FString &fullProcessedPath);