(37 lines)
1 '\" t2 .\" Copyright (c) 2025 Bruce Hill3 .\" All rights reserved.4 .\"5 .TH Path.append_bytes 3 2025-12-07 "Tomo man-pages"6 .SH NAME7 Path.append_bytes \- append bytes to a file8 .SH LIBRARY9 Tomo Standard Library10 .SH SYNOPSIS11 .nf12 .BI Path.append_bytes\ :\ func(path:\ Path,\ bytes:\ [Byte],\ permissions:\ Int32\ =\ Int32(0o644)\ ->\ Result)13 .fi14 .SH DESCRIPTION15 Appends the given bytes 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 ARGUMENTS20 .TS21 allbox;22 lb lb lbx lb23 l l l l.24 Name Type Description Default25 path Path The path of the file to append to. -26 bytes [Byte] The bytes to append to the file. -27 permissions Int32 The permissions to set on the file if it is being created. Int32(0o644)28 .TE29 .SH RETURN30 Either `Success` or `Failure(reason)`.32 .SH EXAMPLES33 .EX34 (./log.txt).append_bytes([104, 105])!35 .EE36 .SH SEE ALSO37 .BR Tomo-Path (3)