Lines Matching refs:tmpFilePath
50 std::string tmpFilePath = dbFilePath + ".ctrl"; in RemoveEnhanceDbFileIfNeed() local
51 if (IsFileExist(tmpFilePath) && std::remove(tmpFilePath.c_str()) != 0) { in RemoveEnhanceDbFileIfNeed()
55 tmpFilePath = dbFilePath + ".ctrl.dwr"; in RemoveEnhanceDbFileIfNeed()
56 if (IsFileExist(tmpFilePath) && std::remove(tmpFilePath.c_str()) != 0) { in RemoveEnhanceDbFileIfNeed()
60 tmpFilePath = dbFilePath + ".redo"; in RemoveEnhanceDbFileIfNeed()
61 if (IsFileExist(tmpFilePath) && std::remove(tmpFilePath.c_str()) != 0) { in RemoveEnhanceDbFileIfNeed()
65 tmpFilePath = dbFilePath + ".undo"; in RemoveEnhanceDbFileIfNeed()
66 if (IsFileExist(tmpFilePath) && std::remove(tmpFilePath.c_str()) != 0) { in RemoveEnhanceDbFileIfNeed()
70 tmpFilePath = dbFilePath + ".safe"; in RemoveEnhanceDbFileIfNeed()
71 if (IsFileExist(tmpFilePath) && std::remove(tmpFilePath.c_str()) != 0) { in RemoveEnhanceDbFileIfNeed()
75 tmpFilePath = dbFilePath + ".map"; in RemoveEnhanceDbFileIfNeed()
76 if (IsFileExist(tmpFilePath) && std::remove(tmpFilePath.c_str()) != 0) { in RemoveEnhanceDbFileIfNeed()