forked from libarchive/libarchive
-
Notifications
You must be signed in to change notification settings - Fork 0
FormatEmpty
kientzle edited this page Mar 24, 2012
·
3 revisions
Libarchive treats empty files specially.
A file with zero bytes presents a problem for libarchive. It so happens that an empty file is valid for several of the formats supported by libarchive. This makes it difficult to accurately determine the "format" of such a file.
Libarchive resolves this dilemma by providing a special dearchiving module called "empty" that recognizes an empty file as a valid archive that contains no entries.
Since the "empty" format handler is the only libarchive module that will recognize an empty file, you have control over how empty files get handled.
- If you want empty files to be treated as invalid, simply leave off the "empty" format handler.
- If you want empty files to be treated as empty archives, enable the "empty" handler (which occurs by default if you call `archive_read_support_format_all()`).
- You can tell whether a file is empty by examining the format of the archive after it has been opened.
- The "empty" handler is the only handler that mixes well with the raw handler.