doc: Document the guarantee provided by 137672cb29
This commit is contained in:
parent
137672cb29
commit
c28614a0b2
1 changed files with 4 additions and 2 deletions
|
@ -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)]
|
||||||
|
|
Loading…
Add table
Reference in a new issue