7.19.2 TarInfo Objects

Python 2.2

7.19.2 TarInfo Objects

A TarInfo object represents one member in a TarFile. Aside from storing all required attributes of a file (like file type, size, time, permissions, owner etc.), it provides some useful methods to determine its type. It does not contain the file's data itself.

TarInfo objects are returned by TarFile's methods getmember(), getmembers() and gettarinfo().

Create a TarInfo object.

Create and return a TarInfo object from a string buffer.

Create a string buffer from a TarInfo object.

A TarInfo object has the following public data attributes:

Name of the archive member.

Size in bytes.

Time of last modification.

Permission bits.

File type. type is usually one of these constants: REGTYPE, AREGTYPE, LNKTYPE, SYMTYPE, DIRTYPE, FIFOTYPE, CONTTYPE, CHRTYPE, BLKTYPE, GNUTYPE_SPARSE. To determine the type of a TarInfo object more conveniently, use the is_*() methods below.

Name of the target file name, which is only present in TarInfo objects of type LNKTYPE and SYMTYPE.

User ID of the user who originally stored this member.

Group ID of the user who originally stored this member.

User name.

Group name.

A TarInfo object also provides some convenient query methods:

Return True if the Tarinfo object is a regular file.

Same as isfile().

Return True if it is a directory.

Return True if it is a symbolic link.

Return True if it is a hard link.

Return True if it is a character device.

Return True if it is a block device.

Return True if it is a FIFO.

Return True if it is one of character device, block device or FIFO.

See About this document... for information on suggesting changes.