isArchiveFile property

bool get isArchiveFile

Checks if this file path represents an archive

Returns true if the file is likely an archive based on extension

Example:

print('/path/to/archive.zip'.isArchiveFile); // true

Implementation

bool get isArchiveFile => QFileInfoUtils.isArchive(this);