| 82 | } |
| 83 | |
| 84 | inline std::string FullPresentablePathFor(const std::string &path) const { |
| 85 | auto pres_cwd = this->GetPresentableCwd(); |
| 86 | auto new_path = pres_cwd; |
| 87 | if(pres_cwd.substr(pres_cwd.length() - 1) != "/") { |
| 88 | new_path += "/"; |
| 89 | } |
| 90 | new_path += path; |
| 91 | return new_path; |
| 92 | } |
| 93 | |
| 94 | inline std::string AbsolutePresentablePathFor(const std::string &path) const { |
| 95 | auto new_path = this->disp_name + ":"; |
no test coverage detected