Searched refs:fullProcessedPath (Results 1 - 4 of 4) sorted by relevance

/external/lzma/CPP/7zip/Common/
H A DFilePathAutoRename.h8 bool AutoRenamePath(UString &fullProcessedPath);
H A DFilePathAutoRename.cpp25 bool AutoRenamePath(UString &fullProcessedPath) argument
28 int dotPos = fullProcessedPath.ReverseFind(L'.');
30 int slashPos = fullProcessedPath.ReverseFind(L'/');
32 int slash1Pos = fullProcessedPath.ReverseFind(L'\\');
39 name = fullProcessedPath.Left(dotPos);
40 extension = fullProcessedPath.Mid(dotPos);
43 name = fullProcessedPath;
54 return !MakeAutoName(name, extension, right, fullProcessedPath);
/external/lzma/CPP/7zip/UI/Common/
H A DArchiveExtractCallback.cpp270 UString fullProcessedPath = _directoryPath + processedPath; local
274 _diskFilePath = fullProcessedPath;
283 if (fileInfo.Find(fullProcessedPath))
293 fullProcessedPath, &fileInfo.MTime, &fileInfo.Size, fullPath,
322 if (!AutoRenamePath(fullProcessedPath))
324 UString message = UString(kCantAutoRename) + fullProcessedPath;
331 UString existPath = fullProcessedPath;
334 UString message = kCantAutoRename + fullProcessedPath;
338 if (!NFile::NDirectory::MyMoveFile(fullProcessedPath, existPath))
340 UString message = UString(kCantRenameFile) + fullProcessedPath;
[all...]
/external/lzma/CPP/7zip/UI/Client7z/
H A DClient7z.cpp311 UString fullProcessedPath = _directoryPath + _filePath; local
312 _diskFilePath = fullProcessedPath;
316 NFile::NDirectory::CreateComplexDirectory(fullProcessedPath);
321 if (fi.Find(fullProcessedPath))
323 if (!NFile::NDirectory::DeleteFileAlways(fullProcessedPath))
325 PrintString(UString(kCantDeleteOutputFile) + fullProcessedPath);
332 if (!_outFileStreamSpec->Open(fullProcessedPath, CREATE_ALWAYS))
334 PrintString((UString)L"can not open output file " + fullProcessedPath);

Completed in 232 milliseconds