blob: a360e55f8e5853f05368964e5b59ad932236e314 (
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
|
'\" t
.\" Copyright (c) 2025 Bruce Hill
.\" All rights reserved.
.\"
.TH Path.current_dir 3 2025-04-21T14:44:34.262325 "Tomo man-pages"
.SH NAME
Path.current_dir \- get current directory
.SH LIBRARY
Tomo Standard Library
.SH SYNOPSIS
.nf
.BI Path.current_dir\ :\ func(->\ Path)
.fi
.SH DESCRIPTION
Creates a new directory at the specified path with the given permissions. If any of the parent directories do not exist, they will be created as needed.
.SH RETURN
The absolute path of the current directory.
.SH EXAMPLES
.EX
>> Path.current_dir()
= (/home/user/tomo)
.EE
|