diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2025-05-17 16:04:05 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2025-05-17 16:04:05 -0400 |
| commit | 8febea9aebe05644731bb68c297d3d13649a8dcb (patch) | |
| tree | 4971ccc4415c11745762cbebcbefd06abbfaebec /api/api.md | |
| parent | 761a483e28935f0bdee4658c37dfaa4606c2660a (diff) | |
Add Path.sibling()
Diffstat (limited to 'api/api.md')
| -rw-r--r-- | api/api.md | 24 |
1 files changed, 23 insertions, 1 deletions
@@ -2746,7 +2746,7 @@ follow_symlinks | `Bool` | Whether to follow symbolic links. | `yes` ## Path.child ```tomo -Path.child : func(path: Path, child: Text -> [Path]) +Path.child : func(path: Path, child: Text -> Path) ``` Return a path that is a child of another path. @@ -3312,6 +3312,28 @@ follow_symlinks | `Bool` | Whether to follow symbolic links. | `yes` (./file.txt).set_owner(owner="root", group="wheel") ``` +## Path.sibling + +```tomo +Path.sibling : func(path: Path, name: Text -> Path) +``` + +Return a path that is a sibling of another path (i.e. has the same parent, but a different name). This is equivalent to `.parent().child(name)` + +Argument | Type | Description | Default +---------|------|-------------|--------- +path | `Path` | A path. | - +name | `Text` | The name of a sibling file or directory. | - + +**Return:** A new path representing the sibling. + + +**Example:** +```tomo +>> (/foo/baz).sibling("doop") += (/foo/doop) + +``` ## Path.subdirectories ```tomo |
