Lines Matching refs:fullProcessedPath
1144 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()
1226 if (!RemoveDir(fullProcessedPath)) in CheckExistFile()
1228 RINOK(SendMessageError_with_LastError(kCantDeleteOutputDir, fullProcessedPath)); in CheckExistFile()
1234 if (NFind::DoesFileExist_Raw(fullProcessedPath)) in CheckExistFile()
1235 if (!DeleteFileAlways(fullProcessedPath)) in CheckExistFile()
1238 RINOK(SendMessageError_with_LastError(kCantDeleteOutputFile, fullProcessedPath)); in CheckExistFile()
1249 int colonPos = NName::FindAltStreamColon(fullProcessedPath); in CheckExistFile()
1250 if (colonPos >= 0 && fullProcessedPath[(unsigned)colonPos + 1] != 0) in CheckExistFile()
1252 FString parentFsPath (fullProcessedPath); in CheckExistFile()
1297 FString fullProcessedPath (us2fs(processedPath)); in GetExtractStream() local
1301 fullProcessedPath = MakePath_from_2_Parts(_dirPathPrefix, fullProcessedPath); in GetExtractStream()
1311 fullProcessedPath = pair.Path; in GetExtractStream()
1312 fullProcessedPath += ':'; in GetExtractStream()
1315 fullProcessedPath += us2fs(s); in GetExtractStream()
1322 _diskFilePath = fullProcessedPath; in GetExtractStream()
1336 RINOK(CheckExistFile(fullProcessedPath, needExit)); in GetExtractStream()
1342 _diskFilePath = fullProcessedPath; in GetExtractStream()
1360 RINOK(SetFromLinkPath(fullProcessedPath, _link, linkWasSet)); in GetExtractStream()
1389 hl = fullProcessedPath; in GetExtractStream()
1392 if (!MyCreateHardLink(fullProcessedPath, hl)) in GetExtractStream()
1395 RINOK(SendMessageError2(errorCode, kCantCreateHardLink, fullProcessedPath, hl)); in GetExtractStream()
1417 if (!_outFileStreamSpec->Open(fullProcessedPath, _isSplit ? OPEN_ALWAYS: CREATE_ALWAYS)) in GetExtractStream()
1421 RINOK(SendMessageError_with_LastError(kCantOpenOutFile, fullProcessedPath)); in GetExtractStream()
1465 RINOK(SendMessageError_with_LastError(kCantSetFileLen, fullProcessedPath)); in GetExtractStream()
1487 RINOK(SendMessageError_with_LastError("Cannot seek to begin of file", fullProcessedPath)); in GetExtractStream()
1494 CIndexToPathPair pair(index, fullProcessedPath); in GetExtractStream()
1498 _renamedFiles[insertIndex].Path = fullProcessedPath; in GetExtractStream()
1933 const FString &fullProcessedPath, in SetFromLinkPath() argument
1977 return SendMessageError("Empty link", fullProcessedPath); in SetFromLinkPath()
1983 if (!MyCreateHardLink(fullProcessedPath, existPath)) in SetFromLinkPath()
1986 RINOK(SendMessageError2(errorCode, kCantCreateHardLink, fullProcessedPath, existPath)); in SetFromLinkPath()
2066 if (!NFile::NIO::SetReparseData(fullProcessedPath, _item.IsDir, data, (DWORD)data.Size())) in SetFromLinkPath()
2068 RINOK(SendMessageError_with_LastError(kCantCreateSymLink, fullProcessedPath)); in SetFromLinkPath()
2078 if (!NFile::NIO::SetSymLink(fullProcessedPath, existPath)) in SetFromLinkPath()
2080 RINOK(SendMessageError_with_LastError(kCantCreateSymLink, fullProcessedPath)); in SetFromLinkPath()
2425 FString fullProcessedPath (us2fs(processedPath)); in Hash_GetFullFilePath() local
2429 fullProcessedPath = MakePath_from_2_Parts( in Hash_GetFullFilePath()
2432 fullProcessedPath); in Hash_GetFullFilePath()
2434 return fullProcessedPath; in Hash_GetFullFilePath()
2445 const FString fullProcessedPath = Hash_GetFullFilePath(); in GetDiskProperty() local
2447 if (fi.Find_FollowLink(fullProcessedPath)) in GetDiskProperty()
2466 const FString fullProcessedPath = Hash_GetFullFilePath(); in GetStream2() local
2471 if (!inStreamSpec->OpenShared(fullProcessedPath, _ntOptions.OpenShareForWrite)) in GetStream2()
2473 RINOK(SendMessageError_with_LastError(kCantOpenInFile, fullProcessedPath)); in GetStream2()