| 30 | } |
| 31 | |
| 32 | std::string PS4PathToPCPath(const std::string &strPs4Path) |
| 33 | { |
| 34 | std::string strPcPath = strPs4Path; |
| 35 | std::replace(strPcPath.begin(), strPcPath.end(), '/', '\\'); |
| 36 | std::string strWorkingDirPath = GetWorkingDirPath(); |
| 37 | strPcPath = util::str::replaceAll(strPcPath, "\\app0\\", strWorkingDirPath); |
| 38 | return strPcPath; |
| 39 | } |
| 40 | |
| 41 | size_t FileCountInDirectory(const std::string &path) |
| 42 | { |
no test coverage detected