doc: Important correction: contents might not have been extracted at all

This commit is contained in:
Chris Hennick 2024-05-10 16:39:12 -07:00
parent ba4c6936d5
commit 4a5d28ed30
No known key found for this signature in database
GPG key ID: DA47AABA4961C509

View file

@ -659,9 +659,9 @@ impl<R: Read + Seek> ZipArchive<R> {
/// already exist. Paths are sanitized with [`ZipFile::enclosed_name`]. /// already exist. Paths are sanitized with [`ZipFile::enclosed_name`].
/// ///
/// Extraction is not atomic. If an error is encountered, some of the files /// Extraction is not atomic. If an error is encountered, some of the files
/// may be left on disk. However, on Unix systems, no newly-created directories will be /// may be left on disk. However, on Unix systems, no newly-created directories with part but
/// readable, writable or usable as process working directories by any non-root user except you /// not all of their contents extracted will be readable, writable or usable as process working
/// unless and until their contents are fully extracted. /// directories by any non-root user except you.
pub fn extract<P: AsRef<Path>>(&mut self, directory: P) -> ZipResult<()> { pub fn extract<P: AsRef<Path>>(&mut self, directory: P) -> ZipResult<()> {
use std::fs; use std::fs;
#[cfg(unix)] #[cfg(unix)]