Class UnpackArchiveFile
Hierarchy
- UnpackArchiveEntry
- UnpackArchiveFile
Constructors
constructor
- new UnpackArchiveFile(
entry: (
| {
directory: string;
fullPath: string;
modTime: Instant;
name: string;
size: number;
type: "folder";
}
| {
directory: string;
fullPath: string;
modTime: Instant;
name: string;
size: number;
type: "file";
}
) & { type: "file" },
reader: ZipArchiveReader,
): UnpackArchiveFileParameters
- entry: (
| {
directory: string;
fullPath: string;
modTime: Instant;
name: string;
size: number;
type: "folder";
}
| {
directory: string;
fullPath: string;
modTime: Instant;
name: string;
size: number;
type: "file";
}
) & { type: "file" } - reader: ZipArchiveReader
Returns UnpackArchiveFile
- entry: (
Properties
Readonly
directory
directory: string
Readonly
full Path
fullPath: string
Readonly
mod Time
modTime: Instant
Readonly
name
name: string
Readonly
size
size: number
type
type: "file"