code / tomo

Lines41.3K C23.7K Markdown9.7K YAML5.0K Tomo2.3K
7 others 763
Python231 Shell230 make212 INI47 Text21 SVG16 Lua6
(36 lines)
1 '\" t
2 .\" Copyright (c) 2026 Bruce Hill
3 .\" All rights reserved.
4 .\"
5 .TH Path.files 3 2026-03-14 "Tomo man-pages"
6 .SH NAME
7 Path.files \- list files in a directory
8 .SH LIBRARY
9 Tomo Standard Library
10 .SH SYNOPSIS
11 .nf
12 .BI Path.files\ :\ func(path:\ Path,\ include_hidden:\ Bool\ =\ no\ ->\ [Path])
13 .fi
14 .SH DESCRIPTION
15 Returns a list of files within the directory at the specified path. Optionally includes hidden files.
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 directory. -
26 include_hidden Bool Whether to include hidden files (those starting with a \fB.\fR). no
27 .TE
28 .SH RETURN
29 A list of file paths.
31 .SH EXAMPLES
32 .EX
33 assert (./directory).files(include_hidden=yes) == [(./directory/file1.txt), (./directory/file2.txt)]
34 .EE
35 .SH SEE ALSO
36 .BR Tomo-Path (3)