aboutsummaryrefslogtreecommitdiff
path: root/man/man3/tomo-Path.set_owner.3
blob: b0b24e710d5718acd4846f5fbcbf886bfc1f0093 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
'\" t
.\" Copyright (c) 2025 Bruce Hill
.\" All rights reserved.
.\"
.TH Path.set_owner 3 2025-11-29 "Tomo man-pages"
.SH NAME
Path.set_owner \- set the owner
.SH LIBRARY
Tomo Standard Library
.SH SYNOPSIS
.nf
.BI Path.set_owner\ :\ func(path:\ Path,\ owner:\ Text?\ =\ none,\ group:\ Text?\ =\ none,\ follow_symlinks:\ Bool\ =\ yes\ ->\ Void)
.fi
.SH DESCRIPTION
Set the owning user and/or group for a path.


.SH ARGUMENTS

.TS
allbox;
lb lb lbx lb
l l l l.
Name	Type	Description	Default
path	Path	The path to change the permissions for. 	-
owner	Text?	If non-none, the new user to assign to be the owner of the file. 	none
group	Text?	If non-none, the new group to assign to be the owner of the file. 	none
follow_symlinks	Bool	Whether to follow symbolic links. 	yes
.TE
.SH RETURN
Nothing. If a path does not exist, a failure will be raised.

.SH EXAMPLES
.EX
(./file.txt).set_owner(owner="root", group="wheel")
.EE
.SH SEE ALSO
.BR Tomo-Path (3)