Skip to main content
Module

std/archive/tar.ts>TarOptions

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

Options for Tar.append.

Properties

optional
filePath: string

Filepath of the file to append to the archive

optional
reader: Reader

A Reader of any arbitrary content to append to the archive

optional
contentSize: number

Size of the content to be appended. This is only required when passing a reader to the archive.