Skip to main content
interface ExtendedFileInfo
implements FileInfo<Parsed>
import { type ExtendedFileInfo } from "https://deno.land/x/etag@0.2.0/mod.d.ts";

Type Parameters

optional
Parsed = false

Properties

optional
atime: Timestamp<Parsed>

The last access time of the file. This corresponds to the atime field from stat on Unix and ftLastAccessTime on Windows. This may not be available on all platforms.

optional
dev: Maybe<number>

ID of the device containing the file.

Linux/Mac OS only.

optional
mode: Maybe<number>

UNSTABLE: Match behavior with Go on Windows for mode.

The underlying raw st_mode bits that contain the standard Unix permissions for this file/directory.

optional
uid: Maybe<number>

User ID of the owner of this file.

Linux/Mac OS only.

optional
gid: Maybe<number>

Group ID of the owner of this file.

Linux/Mac OS only.

optional
rdev: Maybe<number>

Device ID of this file.

Linux/Mac OS only.

optional
blksize: Maybe<number>

Blocksize for filesystem I/O.

Linux/Mac OS only.

optional
blocks: Maybe<number>

Number of blocks allocated to the file, in 512-byte units.

Linux/Mac OS only.