| 19 | } |
| 20 | |
| 21 | std::string ServicePaths::getUserDataPath(const std::string& childPath) const { |
| 22 | assert(!childPath.starts_with('/')); |
| 23 | return std::format("{}/{}", getUserDataDirectory(), childPath); |
| 24 | } |
| 25 | |
| 26 | std::string ServicePaths::getAssetsDirectory() const { |
| 27 | return std::format("{}{}/service/{}/assets", PARTITION_PREFIX, file::SYSTEM_PARTITION_NAME, manifest->id); |
no outgoing calls
no test coverage detected