Interface OldStyleFormatExperimental

The original tar archive header format.

UNSTABLE: New API, yet to be vetted.

interface OldStyleFormat {
    gid: number;
    linkname: string;
    mode: number;
    mtime: number;
    name: string;
    size: number;
    typeflag: string;
    uid: number;
}

Properties

gid: number

The gid of the entry.

linkname: string

The linkname of the entry.

mode: number

The mode of the entry.

mtime: number

The mtime of the entry.

name: string

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.