| 36 | } |
| 37 | |
| 38 | std::string getSystemRootPath() { |
| 39 | std::string root_path; |
| 40 | if (!findFirstMountedSdCardPath(root_path)) { |
| 41 | root_path = file::MOUNT_POINT_DATA; |
| 42 | } |
| 43 | return root_path; |
| 44 | } |
| 45 | |
| 46 | std::string getTempPath() { |
| 47 | return getSystemRootPath() + "/tmp"; |
no test coverage detected