(37 lines)
1 '\" t2 .\" Copyright (c) 2026 Bruce Hill3 .\" All rights reserved.4 .\"5 .TH Path.accessed 3 2026-03-08 "Tomo man-pages"6 .SH NAME7 Path.accessed \- access time8 .SH LIBRARY9 Tomo Standard Library10 .SH SYNOPSIS11 .nf12 .BI Path.accessed\ :\ func(path:\ Path,\ follow_symlinks:\ Bool\ =\ yes\ ->\ Int64?)13 .fi14 .SH DESCRIPTION15 Gets the file access time of a file.18 .SH ARGUMENTS20 .TS21 allbox;22 lb lb lbx lb23 l l l l.24 Name Type Description Default25 path Path The path of the file whose access time you want. -26 follow_symlinks Bool Whether to follow symbolic links. yes27 .TE28 .SH RETURN29 A 64-bit unix epoch timestamp representing when the file or directory was last accessed, or `none` if no such file or directory exists.31 .SH EXAMPLES32 .EX33 assert (./file.txt).accessed() == Int64(1704221100)34 assert (./not-a-file).accessed() == none35 .EE36 .SH SEE ALSO37 .BR Tomo-Path (3)