Note that large_file() requires ZIP64 support.

This commit is contained in:
Rouven Spreckels 2021-02-07 12:46:52 +01:00
parent e42c021448
commit 129d7301ef

View file

@ -151,8 +151,9 @@ impl FileOptions {
/// Set whether the new file's compressed and uncompressed size is less than 4 GiB. /// Set whether the new file's compressed and uncompressed size is less than 4 GiB.
/// ///
/// If set to `false` and the file exceeds the limit, an I/O error is thrown. If set to `true` /// If set to `false` and the file exceeds the limit, an I/O error is thrown. If set to `true`,
/// and the file does not exceed the limit, 20 B are wasted. The default is `false`. /// readers will require ZIP64 support and if the file does not exceed the limit, 20 B are
/// wasted. The default is `false`.
pub fn large_file(mut self, large: bool) -> FileOptions { pub fn large_file(mut self, large: bool) -> FileOptions {
self.large_file = large; self.large_file = large;
self self