Lines Matching refs:fullProcessedPath

1156   CheckExistFile(fullProcessedPath)

1157 it can change: fullProcessedPath, _isRenamed, _overwriteMode
1161 HRESULT CArchiveExtractCallback::CheckExistFile(FString &fullProcessedPath, bool &needExit)
1167 if (fileInfo.Find(fullProcessedPath))
1174 const int slashPos = fullProcessedPath.ReverseFind_PathSepar();
1175 const FString realFullProcessedPath = fullProcessedPath.Left((unsigned)(slashPos + 1)) + fileInfo.Name;
1215 if (!AutoRenamePath(fullProcessedPath))
1217 RINOK(SendMessageError(kCantAutoRename, fullProcessedPath))
1224 FString existPath (fullProcessedPath);
1227 RINOK(SendMessageError(kCantAutoRename, fullProcessedPath))
1231 if (!MyMoveFile(fullProcessedPath, existPath))
1234 RINOK(SendMessageError2(errorCode, kCantRenameFile, existPath, fullProcessedPath))
1243 if (!RemoveDir(fullProcessedPath))
1245 RINOK(SendMessageError_with_LastError(kCantDeleteOutputDir, fullProcessedPath))
1251 if (NFind::DoesFileExist_Raw(fullProcessedPath))
1252 if (!DeleteFileAlways(fullProcessedPath))
1255 RINOK(SendMessageError_with_LastError(kCantDeleteOutputFile, fullProcessedPath))
1262 else // not Find(fullProcessedPath)
1266 int colonPos = NName::FindAltStreamColon(fullProcessedPath);
1267 if (colonPos >= 0 && fullProcessedPath[(unsigned)colonPos + 1] != 0)
1269 FString parentFsPath (fullProcessedPath);
1314 FString fullProcessedPath (us2fs(processedPath));
1318 fullProcessedPath = MakePath_from_2_Parts(_dirPathPrefix, fullProcessedPath);
1328 fullProcessedPath = pair.Path;
1329 fullProcessedPath += ':';
1332 fullProcessedPath += us2fs(s);
1339 _diskFilePath = fullProcessedPath;
1353 RINOK(CheckExistFile(fullProcessedPath, needExit))
1359 _diskFilePath = fullProcessedPath;
1377 RINOK(SetFromLinkPath(fullProcessedPath, _link, linkWasSet))
1406 hl = fullProcessedPath;
1409 if (!MyCreateHardLink(fullProcessedPath, hl))
1412 RINOK(SendMessageError2(errorCode, kCantCreateHardLink, fullProcessedPath, hl))
1434 if (!_outFileStreamSpec->Open(fullProcessedPath, _isSplit ? OPEN_ALWAYS: CREATE_ALWAYS))
1438 RINOK(SendMessageError_with_LastError(kCantOpenOutFile, fullProcessedPath))
1482 RINOK(SendMessageError_with_LastError(kCantSetFileLen, fullProcessedPath))
1504 RINOK(SendMessageError_with_LastError("Cannot seek to begin of file", fullProcessedPath))
1511 CIndexToPathPair pair(index, fullProcessedPath);
1515 _renamedFiles[insertIndex].Path = fullProcessedPath;
1946 const FString &fullProcessedPath,
1990 return SendMessageError("Empty link", fullProcessedPath);
1996 if (!MyCreateHardLink(fullProcessedPath, existPath))
1999 RINOK(SendMessageError2(errorCode, kCantCreateHardLink, fullProcessedPath, existPath))
2010 RINOK(SendMessageError2("Cannot find the file for copying", existPath, fullProcessedPath));
2018 RINOK(SendMessageError2("File size collision for file copying", existPath, fullProcessedPath));
2020 // RINOK(MyCopyFile(existPath, fullProcessedPath));
2079 if (!NFile::NIO::SetReparseData(fullProcessedPath, _item.IsDir, data, (DWORD)data.Size()))
2081 RINOK(SendMessageError_with_LastError(kCantCreateSymLink, fullProcessedPath))
2091 if (!NFile::NIO::SetSymLink(fullProcessedPath, existPath))
2093 RINOK(SendMessageError_with_LastError(kCantCreateSymLink, fullProcessedPath))
2438 FString fullProcessedPath (us2fs(processedPath));
2442 fullProcessedPath = MakePath_from_2_Parts(
2445 fullProcessedPath);
2447 return fullProcessedPath;
2458 const FString fullProcessedPath = Hash_GetFullFilePath();
2460 if (fi.Find_FollowLink(fullProcessedPath))
2479 const FString fullProcessedPath = Hash_GetFullFilePath();
2484 if (!inStreamSpec->OpenShared(fullProcessedPath, _ntOptions.OpenShareForWrite))
2486 RINOK(SendMessageError_with_LastError(kCantOpenInFile, fullProcessedPath))