IPWorks ZIP 2020 Python Edition

Questions / Feedback?

file_compressed_name Property

Filename, as stored inside of the archive.

Syntax

def get_file_compressed_name() -> str: ...
def set_file_compressed_name(value: str) -> None: ...

file_compressed_name = property(get_file_compressed_name, set_file_compressed_name)

Default Value

""

Remarks

file_compressed_name contains the name of the compressed file, as stored within the gzip header.

This field should generally be set with a relative path or with no path at all. The exact interpretation of the path is left to the decompression software; generally, pathnames will be interpreted as relative to a base directory, and these subdirectories will be created as needed. Absolute pathnames will not be interpreted correctly by the class, and may or may not be interpreted correctly by other decompression software.

Paths should be specified in standard (UNIX) format. They may also be specified in the format native to the host operating system, in which case they will be immediately converted.

It is not usually necessary to manually set the value of this property; it will be assigned by compress if it is not specified, and it will always be written by a call to scan or extract.

Copyright (c) 2022 /n software inc. - All rights reserved.
IPWorks ZIP 2020 Python Edition - Version 20.0 [Build 8300]