doc: Important correction: contents might not have been extracted at all
This commit is contained in:
parent
ba4c6936d5
commit
4a5d28ed30
1 changed files with 3 additions and 3 deletions
|
@ -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)]
|
||||||
|
|
Loading…
Add table
Reference in a new issue