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.can_write 3 2025-11-29 "Tomo man-pages"
6 .SH NAME
7 Path.can_write \- check write permissions
8 .SH LIBRARY
9 Tomo Standard Library
10 .SH SYNOPSIS
11 .nf
12 .BI Path.can_write\ :\ func(path:\ Path\ ->\ Bool)
13 .fi
14 .SH DESCRIPTION
15 Returns whether or not a file can be written by the current user/group.
18 .SH ARGUMENTS
20 .TS
21 allbox;
22 lb lb lbx
23 l l l.
24 Name Type Description
25 path Path The path of the file to check.
26 .TE
27 .SH RETURN
28 `yes` if the file or directory exists and the current user has write permissions, otherwise `no`.
30 .SH EXAMPLES
31 .EX
32 assert (/tmp).can_write() == yes
33 assert (/etc/passwd).can_write() == no
34 assert (/non/existant/file).can_write() == no
35 .EE
36 .SH SEE ALSO
37 .BR Tomo-Path (3)