Skip to main content
Module

std/archive/mod.ts>TarEntry

Deno standard library
Go to Latest
class TarEntry
implements Reader
import { TarEntry } from "https://deno.land/std@0.221.0/archive/mod.ts";

Contains tar header metadata and a reader to the entry's body.

Constructors

new
TarEntry()

Constructs a new instance.

Properties

readonly
consumed: boolean

Returns whether the entry has already been consumed.

Methods

Discords the current entry.

read(p: Uint8Array): Promise<number | null>

Reads up to p.byteLength bytes of the tar entry into p. It resolves to the number of bytes read (0 < n <= p.byteLength) and rejects if any error encountered. Even if read() resolves to n < p.byteLength, it may use all of p as scratch space during the call. If some data is available but not p.byteLength bytes, read() conventionally resolves to what is available instead of waiting for more.

interface TarEntry
import { type TarEntry } from "https://deno.land/std@0.221.0/archive/mod.ts";

Tar entry