System.IO.Compression.ZipFileExtensions.ExtractToFile C# (CSharp) Méthode

ExtractToFile() public static méthode

Creates a file on the file system with the entry?s contents and the specified name. The last write time of the file is set to the entry?s last write time. This method does not allow overwriting of an existing file with the same name. Attempting to extract explicit directories (entries with names that end in directory separator characters) will not result in the creation of a directory.
The caller does not have the required permission. destinationFileName is a zero-length string, contains only white space, or contains one or more /// invalid characters as defined by InvalidPathChars. -or- destinationFileName specifies a directory. destinationFileName is null. The specified path, file name, or both exceed the system-defined maximum length. /// For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters. The path specified in destinationFileName is invalid (for example, it is on /// an unmapped drive). destinationFileName already exists. /// -or- An I/O error has occurred. -or- The entry is currently open for writing. /// -or- The entry has been deleted from the archive. destinationFileName is in an invalid format /// -or- The ZipArchive that this entry belongs to was opened in a write-only mode. The entry is missing from the archive or is corrupt and cannot be read /// -or- The entry has been compressed using a compression method that is not supported. The ZipArchive that this entry belongs to has been disposed.
public static ExtractToFile ( this source, string destinationFileName ) : void
source this
destinationFileName string The name of the file that will hold the contents of the entry. /// The path is permitted to specify relative or absolute path information. /// Relative path information is interpreted as relative to the current working directory.
Résultat void
        public static void ExtractToFile(this ZipArchiveEntry source, string destinationFileName)
        {
            ExtractToFile(source, destinationFileName, false);
        }

Same methods

ZipFileExtensions::ExtractToFile ( this source, string destinationFileName, bool overwrite ) : void