| 148 | } |
| 149 | |
| 150 | std::string StripFileName(const std::string &filepath) { |
| 151 | size_t i = filepath.find_last_of(PathSeparatorSet); |
| 152 | return i != std::string::npos ? filepath.substr(0, i) : ""; |
| 153 | } |
| 154 | |
| 155 | std::string ConCatPathFileName(const std::string &path, |
| 156 | const std::string &filename) { |
no outgoing calls
no test coverage detected