Interface PosixUstarFormatExperimental

The POSIX ustar archive header format.

UNSTABLE: New API, yet to be vetted.

interface PosixUstarFormat {
    devmajor: string;
    devminor: string;
    gid: number;
    gname: string;
    linkname: string;
    magic: string;
    mode: number;
    mtime: number;
    name: string;
    prefix: string;
    size: number;
    typeflag: string;
    uid: number;
    uname: string;
    version: string;
}

Properties

devmajor: string

The devmajor of the entry.

devminor: string

The devminor of the entry.

gid: number

The gid of the entry.

gname: string

The gname of the entry.

linkname: string

The linkname of the entry.

magic: string

The magic number of the entry.

mode: number

The mode of the entry.

mtime: number

The mtime of the entry.

name: string

The latter half of the name of the entry.

prefix: string

The former half of the name of the entry.

size: number

The size of the entry.

typeflag: string

The typeflag of the entry.

uid: number

The uid of the entry.

uname: string

The uname of the entry.

version: string

The version number of the entry.