| 407 | } |
| 408 | |
| 409 | String expand_tilde(String path) { |
| 410 | if (path.is_empty() || path[0] != '~') { |
| 411 | return path; |
| 412 | } |
| 413 | |
| 414 | String home = get_user_home_dir(); |
| 415 | |
| 416 | if (path.size() > 1) { |
| 417 | return home + path.substr(1, path.size() - 1); |
| 418 | } else { |
| 419 | return home; |
| 420 | } |
| 421 | } |
| 422 | } //namespace |
| 423 | |
| 424 | Ref<RegEx> Glob::escapere = nullptr; |
no test coverage detected