Copy most attributes in deep_copy_file, and document the one we can't
This commit is contained in:
parent
3c0ccf48ff
commit
e89fa95721
1 changed files with 12 additions and 5 deletions
17
src/write.rs
17
src/write.rs
|
@ -393,7 +393,7 @@ impl<A: Read + Write + Seek> ZipWriter<A> {
|
||||||
|
|
||||||
impl<A: Read + Write + Seek> ZipWriter<A> {
|
impl<A: Read + Write + Seek> ZipWriter<A> {
|
||||||
/// Adds another copy of a file already in this archive. This will produce a larger but more
|
/// Adds another copy of a file already in this archive. This will produce a larger but more
|
||||||
/// widely-compatible archive compared to [shallow_copy_file].
|
/// widely-compatible archive compared to [shallow_copy_file]. Does not copy alignment.
|
||||||
pub fn deep_copy_file(&mut self, src_name: &str, dest_name: &str) -> ZipResult<()> {
|
pub fn deep_copy_file(&mut self, src_name: &str, dest_name: &str) -> ZipResult<()> {
|
||||||
self.finish_file()?;
|
self.finish_file()?;
|
||||||
let write_position = self.inner.get_plain().stream_position()?;
|
let write_position = self.inner.get_plain().stream_position()?;
|
||||||
|
@ -403,10 +403,17 @@ impl<A: Read + Write + Seek> ZipWriter<A> {
|
||||||
let compressed_size = src_data.compressed_size;
|
let compressed_size = src_data.compressed_size;
|
||||||
debug_assert!(compressed_size <= write_position - data_start);
|
debug_assert!(compressed_size <= write_position - data_start);
|
||||||
let uncompressed_size = src_data.uncompressed_size;
|
let uncompressed_size = src_data.uncompressed_size;
|
||||||
let mut options = FileOptions::default()
|
let mut options = FileOptions {
|
||||||
.large_file(compressed_size.max(uncompressed_size) > spec::ZIP64_BYTES_THR)
|
compression_method: src_data.compression_method,
|
||||||
.last_modified_time(src_data.last_modified_time)
|
compression_level: src_data.compression_level,
|
||||||
.compression_method(src_data.compression_method);
|
last_modified_time: src_data.last_modified_time,
|
||||||
|
permissions: src_data.unix_mode(),
|
||||||
|
large_file: src_data.large_file,
|
||||||
|
encrypt_with: None,
|
||||||
|
extra_data: src_data.extra_field.clone(),
|
||||||
|
central_extra_data: src_data.central_extra_field.clone(),
|
||||||
|
alignment: 1,
|
||||||
|
};
|
||||||
if let Some(perms) = src_data.unix_mode() {
|
if let Some(perms) = src_data.unix_mode() {
|
||||||
options = options.unix_permissions(perms);
|
options = options.unix_permissions(perms);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue