(37 lines)
1 '\" t2 .\" Copyright (c) 2025 Bruce Hill3 .\" All rights reserved.4 .\"5 .TH Path.group 3 2025-11-29 "Tomo man-pages"6 .SH NAME7 Path.group \- get the owning group8 .SH LIBRARY9 Tomo Standard Library10 .SH SYNOPSIS11 .nf12 .BI Path.group\ :\ func(path:\ Path,\ follow_symlinks:\ Bool\ =\ yes\ ->\ Text?)13 .fi14 .SH DESCRIPTION15 Get the owning group of a file or directory.18 .SH ARGUMENTS20 .TS21 allbox;22 lb lb lbx lb23 l l l l.24 Name Type Description Default25 path Path The path whose owning group to get. -26 follow_symlinks Bool Whether to follow symbolic links. yes27 .TE28 .SH RETURN29 The name of the group which owns the file or directory, or `none` if the path does not exist.31 .SH EXAMPLES32 .EX33 assert (/bin).group() == "root"34 assert (/non/existent/file).group() == none35 .EE36 .SH SEE ALSO37 .BR Tomo-Path (3)