• Home
  • Raw
  • Download

Lines Matching refs:fullProcessedPath

1038     FString fullProcessedPath = us2fs(processedPath);  in GetStream()  local
1042 fullProcessedPath = MakePath_from_2_Parts(_dirPathPrefix, fullProcessedPath); in GetStream()
1053 fullProcessedPath = pair.Path; in GetStream()
1054 fullProcessedPath += (FChar)':'; in GetStream()
1057 fullProcessedPath += us2fs(s); in GetStream()
1067 _diskFilePath = fullProcessedPath; in GetStream()
1080 if (fileInfo.Find(fullProcessedPath)) in GetStream()
1088 int slashPos = fullProcessedPath.ReverseFind_PathSepar(); in GetStream()
1089 FString realFullProcessedPath = fullProcessedPath.Left(slashPos + 1) + fileInfo.Name; in GetStream()
1113 if (!AutoRenamePath(fullProcessedPath)) in GetStream()
1115 RINOK(SendMessageError(kCantAutoRename, fullProcessedPath)); in GetStream()
1122 FString existPath = fullProcessedPath; in GetStream()
1125 RINOK(SendMessageError(kCantAutoRename, fullProcessedPath)); in GetStream()
1129 if (!MyMoveFile(fullProcessedPath, existPath)) in GetStream()
1131 RINOK(SendMessageError2(kCantRenameFile, existPath, fullProcessedPath)); in GetStream()
1140 if (!RemoveDir(fullProcessedPath)) in GetStream()
1142 RINOK(SendMessageError_with_LastError(kCantDeleteOutputDir, fullProcessedPath)); in GetStream()
1151 if (!DeleteFileAlways(fullProcessedPath)) in GetStream()
1153 RINOK(SendMessageError_with_LastError(kCantDeleteOutputFile, fullProcessedPath)); in GetStream()
1165 int colonPos = NName::FindAltStreamColon(fullProcessedPath); in GetStream()
1166 if (colonPos >= 0 && fullProcessedPath[(unsigned)colonPos + 1] != 0) in GetStream()
1168 FString parentFsPath = fullProcessedPath; in GetStream()
1182 _diskFilePath = fullProcessedPath; in GetStream()
1223 if (!MyCreateHardLink(fullProcessedPath, existPath)) in GetStream()
1225 … RINOK(SendMessageError2("Can not create hard link", fullProcessedPath, existPath)); in GetStream()
1271 … if (!NFile::NIO::SetReparseData(fullProcessedPath, _item.IsDir, data, (DWORD)data.Size())) in GetStream()
1273 … RINOK(SendMessageError_with_LastError("Can not create symbolic link", fullProcessedPath)); in GetStream()
1302 hl = fullProcessedPath; in GetStream()
1305 if (!MyCreateHardLink(fullProcessedPath, hl)) in GetStream()
1307 RINOK(SendMessageError2("Can not create hard link", fullProcessedPath, hl)); in GetStream()
1322 if (!_outFileStreamSpec->Open(fullProcessedPath, _isSplit ? OPEN_ALWAYS: CREATE_ALWAYS)) in GetStream()
1326 RINOK(SendMessageError_with_LastError("Can not open output file", fullProcessedPath)); in GetStream()
1335 CIndexToPathPair pair(index, fullProcessedPath); in GetStream()
1339 _renamedFiles[insertIndex].Path = fullProcessedPath; in GetStream()