| 249 | } |
| 250 | |
| 251 | String get_real_dir(const String &path) { |
| 252 | if (path.is_absolute_path()) { |
| 253 | return path; |
| 254 | } |
| 255 | return get_real_cwd().path_join(path); |
| 256 | } |
| 257 | |
| 258 | String get_real_base_dir(const String &path) { |
| 259 | return get_base_dir(get_real_dir(path)); |
no test coverage detected