diff --git a/src/read.rs b/src/read.rs index 8e80ce13..0199f7e1 100644 --- a/src/read.rs +++ b/src/read.rs @@ -658,8 +658,10 @@ impl ZipArchive { /// Extract a Zip archive into a directory, overwriting files if they /// already exist. Paths are sanitized with [`ZipFile::enclosed_name`]. /// - /// Extraction is not atomic; If an error is encountered, some of the files - /// may be left on disk. + /// 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 + /// readable, writable or usable as process working directories by any user except you unless + /// and until their contents are fully extracted. pub fn extract>(&mut self, directory: P) -> ZipResult<()> { use std::fs; #[cfg(unix)]