blob: eade9d1eb07dad0394b9024513837ac720f124f0 (
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
|
'\" t
.\" Copyright (c) 2025 Bruce Hill
.\" All rights reserved.
.\"
.TH Path.files 3 2025-09-06 "Tomo man-pages"
.SH NAME
Path.files \- list files in a directory
.SH LIBRARY
Tomo Standard Library
.SH SYNOPSIS
.nf
.BI Path.files\ :\ func(path:\ Path,\ include_hidden:\ Bool\ =\ no\ ->\ [Path])
.fi
.SH DESCRIPTION
Returns a list of files within the directory at the specified path. Optionally includes hidden files.
.SH ARGUMENTS
.TS
allbox;
lb lb lbx lb
l l l l.
Name Type Description Default
path Path The path of the directory. -
include_hidden Bool Whether to include hidden files. no
.TE
.SH RETURN
A list of file paths.
.SH EXAMPLES
.EX
>> (./directory).files(include_hidden=yes)
= [(./directory/file1.txt), (./directory/file2.txt)]
.EE
|