code / tomo

Lines41.3K C23.7K Markdown9.7K YAML5.0K Tomo2.3K
7 others 763
Python231 Shell230 make212 INI47 Text21 SVG16 Lua6
(37 lines)
1 '\" t
2 .\" Copyright (c) 2025 Bruce Hill
3 .\" All rights reserved.
4 .\"
5 .TH Path.append 3 2025-12-07 "Tomo man-pages"
6 .SH NAME
7 Path.append \- append to a file
8 .SH LIBRARY
9 Tomo Standard Library
10 .SH SYNOPSIS
11 .nf
12 .BI Path.append\ :\ func(path:\ Path,\ text:\ Text,\ permissions:\ Int32\ =\ Int32(0o644)\ ->\ Result)
13 .fi
14 .SH DESCRIPTION
15 Appends the given text to the file at the specified path, creating the file if it doesn't already exist. Failure to write will result in a runtime error.
18 .SH ARGUMENTS
20 .TS
21 allbox;
22 lb lb lbx lb
23 l l l l.
24 Name Type Description Default
25 path Path The path of the file to append to. -
26 text Text The text to append to the file. -
27 permissions Int32 The permissions to set on the file if it is being created. Int32(0o644)
28 .TE
29 .SH RETURN
30 Either `Success` or `Failure(reason)`.
32 .SH EXAMPLES
33 .EX
34 (./log.txt).append("extra line\[rs]n")!
35 .EE
36 .SH SEE ALSO
37 .BR Tomo-Path (3)