Skip to main content
Module

std/archive/tar.ts>TarInfo

The Deno Standard Library
Latest
interface TarInfo
Re-export
import { type TarInfo } from "https://deno.land/std@0.224.0/archive/tar.ts";

Base interface for TarMeta

Properties

optional
fileMode: number

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

optional
mtime: number

Data modification time of the file at the time it was archived. It represents the integer number of seconds since January 1, 1970, 00:00 UTC.

optional
uid: number

Numeric user ID of the file owner. This is ignored if the operating system does not support numeric user IDs.

optional
gid: number

Numeric group ID of the file owner. This is ignored if the operating system does not support numeric group IDs.

optional
owner: string

The name of the file owner.

optional
group: string

The group that the file owner belongs to.

optional
type: string

The type of file archived.