import { type FileInfo } from "https://deno.land/x/ayonli_jsext@v0.9.72/fs.ts";
Information about a file or directory.
Properties
The size of the file in bytes. This value may be 0
if this is a
directory or the size cannot be determined.
The MIME type of the file. If the MIME type cannot be determined, this value will be an empty string.
mtime: Date | null
The last modified time of the file. This value may be null
on
unsupported platforms.
atime: Date | null
The last accessed time of the file. This value may be null
on
unsupported platforms.
birthtime: Date | null
The creation time of the file. This value may be null
on unsupported
platforms.