doc: Document the guarantee provided by 137672cb29

This commit is contained in:
Chris Hennick 2024-05-10 16:33:54 -07:00
parent 137672cb29
commit c28614a0b2
No known key found for this signature in database
GPG key ID: DA47AABA4961C509

View file

@ -658,8 +658,10 @@ impl<R: Read + Seek> ZipArchive<R> {
/// Extract a Zip archive into a directory, overwriting files if they /// Extract a Zip archive into a directory, overwriting files if they
/// 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. /// may be left on disk. However, on Unix systems, no newly-created directories will be
/// readable, writable or usable as process working directories by any user except you unless
/// and until their contents are fully extracted.
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)]