import { ZipDirectoryEntry } from "https://deno.land/x/zipjs@v2.6.55/index.d.ts";
Represents a directory entry in the zip (Filesystem API).
Properties
true
for ZipDirectoryEntry instances.
Methods
Adds aentry entry with content provided as a Blob
instance
Adds aentry entry with content provided as a Data URI string
encoded in Base64
Adds a directory
Adds an entry with content provided via a FileSystemEntry
instance
Adds an entry with content fetched from a URL
Adds aentry entry with content provided via a ReadableStream
instance
Adds an entry with content provided as text
Adds an entry with content provided as a Uint8Array
instance
Returns a Blob
instance containing a zip file of the entry and its descendants
Returns a Data URI string
encoded in Base64 containing a zip file of the entry and its descendants
Returns a Uint8Array
instance containing a zip file of the entry and its descendants
Creates a zip file via a WritableStream
instance containing the entry and its descendants
Creates a zip file via a custom Writer instance containing the entry and its descendants
Gets a ZipEntry child instance from its relative filename
Extracts a zip file provided as a Blob
instance into the entry
Extracts a zip file provided as a Data URI string
encoded in Base64 into the entry
Extracts a zip file fetched from a URL into the entry
Extracts a zip file provided via a ReadableStream
instance into the entry
Extracts a zip file provided as a Uint8Array
instance into the entry
Extracts a zip file provided via a custom Reader instance into the entry