Sdílet prostřednictvím


ZipFileExtensions.ExtractToFile Metoda

Definice

Extrahuje položku v archivu zip do souboru.

Přetížení

ExtractToFile(ZipArchiveEntry, String)

Extrahuje položku v archivu zip do souboru.

ExtractToFile(ZipArchiveEntry, String, Boolean)

Extrahuje položku v archivu zip do souboru a volitelně přepíše existující soubor se stejným názvem.

ExtractToFile(ZipArchiveEntry, String)

Zdroj:
ZipFileExtensions.ZipArchiveEntry.Extract.cs
Zdroj:
ZipFileExtensions.ZipArchiveEntry.Extract.cs
Zdroj:
ZipFileExtensions.ZipArchiveEntry.Extract.cs

Extrahuje položku v archivu zip do souboru.

public:
[System::Runtime::CompilerServices::Extension]
 static void ExtractToFile(System::IO::Compression::ZipArchiveEntry ^ source, System::String ^ destinationFileName);
public static void ExtractToFile (this System.IO.Compression.ZipArchiveEntry source, string destinationFileName);
static member ExtractToFile : System.IO.Compression.ZipArchiveEntry * string -> unit
<Extension()>
Public Sub ExtractToFile (source As ZipArchiveEntry, destinationFileName As String)

Parametry

source
ZipArchiveEntry

Položka archivu zip, ze které chcete extrahovat soubor.

destinationFileName
String

Cesta k souboru, který se má vytvořit z obsahu položky. Můžete zadat buď relativní, nebo absolutní cestu. Relativní cesta je interpretována jako relativní vzhledem k aktuálnímu pracovnímu adresáři.

Výjimky

destinationFileName je řetězec nulové délky, obsahuje pouze prázdné znaky nebo obsahuje jeden nebo více neplatných znaků definovaných nástrojem InvalidPathChars.

-nebo-

destinationFileName určuje adresář.

destinationFileName je null.

Zadaná cesta, název souboru nebo obojí překračují maximální délku definovanou systémem.

Zadaná cesta je neplatná (například je na nezmapované jednotce).

destinationFileName již existuje.

-nebo-

Došlo k vstupně-výstupní chybě.

-nebo-

Položka je aktuálně otevřená pro psaní.

-nebo-

Položka byla odstraněna z archivu.

Volající nemá požadovaná oprávnění k vytvoření nového souboru.

Položka v archivu chybí nebo je poškozená a nelze ji přečíst.

-nebo-

Položka byla komprimována pomocí metody komprese, která není podporována.

Archiv zip, do kterého tato položka patří, byl odstraněn.

destinationFileName je v neplatném formátu.

-nebo-

Archiv zip pro tuto položku byl otevřen v Create režimu, který neumožňuje načtení položek.

Příklady

Následující příklad ukazuje, jak iterovat obsah archivního souboru zip a extrahovat soubory, které mají příponu .txt.

using System;
using System.IO;
using System.IO.Compression;

class Program
{
    static void Main(string[] args)
    {
        string zipPath = @".\result.zip";

        Console.WriteLine("Provide path where to extract the zip file:");
        string extractPath = Console.ReadLine();

        // Normalizes the path.
        extractPath = Path.GetFullPath(extractPath);

        // Ensures that the last character on the extraction path
        // is the directory separator char.
        // Without this, a malicious zip file could try to traverse outside of the expected
        // extraction path.
        if (!extractPath.EndsWith(Path.DirectorySeparatorChar.ToString(), StringComparison.Ordinal))
            extractPath += Path.DirectorySeparatorChar;

        using (ZipArchive archive = ZipFile.OpenRead(zipPath))
        {
            foreach (ZipArchiveEntry entry in archive.Entries)
            {
                if (entry.FullName.EndsWith(".txt", StringComparison.OrdinalIgnoreCase))
                {
                    // Gets the full path to ensure that relative segments are removed.
                    string destinationPath = Path.GetFullPath(Path.Combine(extractPath, entry.FullName));

                    // Ordinal match is safest, case-sensitive volumes can be mounted within volumes that
                    // are case-insensitive.
                    if (destinationPath.StartsWith(extractPath, StringComparison.Ordinal))
                        entry.ExtractToFile(destinationPath);
                }
            }
        }
    }
}
Imports System.IO
Imports System.IO.Compression

Module Module1

    Sub Main()
        Dim zipPath As String = ".\result.zip"

        Console.WriteLine("Provide path where to extract the zip file:")
        Dim extractPath As String = Console.ReadLine()

        ' Normalizes the path.
        extractPath = Path.GetFullPath(extractPath)

        ' Ensures that the last character on the extraction path
        ' is the directory separator char. 
        ' Without this, a malicious zip file could try to traverse outside of the expected
        ' extraction path.
        If Not extractPath.EndsWith(Path.DirectorySeparatorChar.ToString(), StringComparison.Ordinal) Then
            extractPath += Path.DirectorySeparatorChar
        End If

        Using archive As ZipArchive = ZipFile.OpenRead(zipPath)
            For Each entry As ZipArchiveEntry In archive.Entries
                If entry.FullName.EndsWith(".txt", StringComparison.OrdinalIgnoreCase) Then

                    ' Gets the full path to ensure that relative segments are removed.
                    Dim destinationPath As String = Path.GetFullPath(Path.Combine(extractPath, entry.FullName))
                    
                    ' Ordinal match is safest, case-sensitive volumes can be mounted within volumes that
                    ' are case-insensitive.
                    If destinationPath.StartsWith(extractPath, StringComparison.Ordinal) Then 
                        entry.ExtractToFile(destinationPath)
                    End If

                End If
            Next
        End Using
    End Sub

End Module

Poznámky

Pokud cílový soubor již existuje, tato metoda nepřepíše jej; vyvolá výjimku IOException . Chcete-li přepsat existující soubor, použijte ExtractToFile(ZipArchiveEntry, String, Boolean) místo toho přetížení metody.

Čas posledního zápisu souboru je nastaven na poslední čas, kdy byla položka v archivu zip změněna; tato hodnota je uložena ve LastWriteTime vlastnosti.

Tuto metodu nelze použít k extrakci adresáře; místo toho použijte metodu ExtractToDirectory .

Platí pro

ExtractToFile(ZipArchiveEntry, String, Boolean)

Zdroj:
ZipFileExtensions.ZipArchiveEntry.Extract.cs
Zdroj:
ZipFileExtensions.ZipArchiveEntry.Extract.cs
Zdroj:
ZipFileExtensions.ZipArchiveEntry.Extract.cs

Extrahuje položku v archivu zip do souboru a volitelně přepíše existující soubor se stejným názvem.

public:
[System::Runtime::CompilerServices::Extension]
 static void ExtractToFile(System::IO::Compression::ZipArchiveEntry ^ source, System::String ^ destinationFileName, bool overwrite);
public static void ExtractToFile (this System.IO.Compression.ZipArchiveEntry source, string destinationFileName, bool overwrite);
static member ExtractToFile : System.IO.Compression.ZipArchiveEntry * string * bool -> unit
<Extension()>
Public Sub ExtractToFile (source As ZipArchiveEntry, destinationFileName As String, overwrite As Boolean)

Parametry

source
ZipArchiveEntry

Položka archivu zip, ze které chcete extrahovat soubor.

destinationFileName
String

Cesta k souboru, který se má vytvořit z obsahu položky. Můžete zadat buď relativní, nebo absolutní cestu. Relativní cesta je interpretována jako relativní vzhledem k aktuálnímu pracovnímu adresáři.

overwrite
Boolean

truepřepsat existující soubor, který má stejný název jako cílový soubor; v opačném případě . false

Výjimky

destinationFileName je řetězec nulové délky, obsahuje pouze prázdné znaky nebo obsahuje jeden nebo více neplatných znaků definovaných nástrojem InvalidPathChars.

-nebo-

destinationFileName určuje adresář.

destinationFileName je null.

Zadaná cesta, název souboru nebo obojí překračují maximální délku definovanou systémem.

Zadaná cesta je neplatná (například je na nezmapované jednotce).

destinationFileName již existuje a overwrite je false.

-nebo-

Došlo k vstupně-výstupní chybě.

-nebo-

Položka je aktuálně otevřená pro psaní.

-nebo-

Položka byla odstraněna z archivu.

Volající nemá požadovaná oprávnění k vytvoření nového souboru.

Položka chybí v archivu nebo je poškozená a nelze ji přečíst.

-nebo-

Položka byla komprimována pomocí metody komprese, která není podporována.

Archiv zip, do kterého tato položka patří, byl odstraněn.

destinationFileName je v neplatném formátu.

-nebo-

Archiv zip pro tuto položku byl otevřen v Create režimu, který neumožňuje načtení položek.

Příklady

Následující příklad ukazuje, jak iterovat obsah souboru zip archivu a extrahovat soubory, které mají příponu .txt. Přepíše existující soubor, který má v cílové složce stejný název. Chcete-li zkompilovat tento příklad kódu, musíte odkazovat na System.IO.Compression sestavení a System.IO.Compression.FileSystem v projektu.

using System;
using System.IO;
using System.IO.Compression;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            string zipPath = @"c:\example\start.zip";

            Console.WriteLine("Provide path where to extract the zip file:");
            string extractPath = Console.ReadLine();

            // Normalizes the path.
            extractPath = Path.GetFullPath(extractPath);

            // Ensures that the last character on the extraction path
            // is the directory separator char.
            // Without this, a malicious zip file could try to traverse outside of the expected
            // extraction path.
            if (!extractPath.EndsWith(Path.DirectorySeparatorChar))
                extractPath += Path.DirectorySeparatorChar;

            using (ZipArchive archive = ZipFile.OpenRead(zipPath))
            {
                foreach (ZipArchiveEntry entry in archive.Entries)
                {
                    if (entry.FullName.EndsWith(".txt", StringComparison.OrdinalIgnoreCase))
                    {
                        // Gets the full path to ensure that relative segments are removed.
                        string destinationPath = Path.GetFullPath(Path.Combine(extractPath, entry.FullName));

                        // Ordinal match is safest, case-sensitive volumes can be mounted within volumes that
                        // are case-insensitive.
                        if (destinationPath.StartsWith(extractPath, StringComparison.Ordinal))
                            entry.ExtractToFile(destinationPath, true);
                    }
                }
            }
        }
    }
}
Imports System.IO
Imports System.IO.Compression

Module Module1

    Sub Main()
        Dim zipPath As String = "c:\example\start.zip"

        Console.WriteLine("Provide path where to extract the zip file:")
        Dim extractPath As String = Console.ReadLine()

        ' Normalizes the path.
        extractPath = Path.GetFullPath(extractPath)

        ' Ensures that the last character on the extraction path
        ' is the directory separator char. 
        ' Without this, a malicious zip file could try to traverse outside of the expected
        ' extraction path.
        If Not extractPath.EndsWith(Path.DirectorySeparatorChar) Then
            extractPath += Path.DirectorySeparatorChar
        End If

        Using archive As ZipArchive = ZipFile.OpenRead(zipPath)
            For Each entry As ZipArchiveEntry In archive.Entries
                If entry.FullName.EndsWith(".txt", StringComparison.OrdinalIgnoreCase) Then

                    ' Gets the full path to ensure that relative segments are removed.
                    Dim destinationPath As String = Path.GetFullPath(Path.Combine(extractPath, entry.FullName))
                    
                    ' Ordinal match is safest, case-sensitive volumes can be mounted within volumes that
                    ' are case-insensitive.
                    If destinationPath.StartsWith(extractPath, StringComparison.Ordinal) Then 
                        entry.ExtractToFile(destinationPath, true)
                    End If

                End If
            Next
        End Using
    End Sub

End Module

Poznámky

Čas posledního zápisu souboru je nastaven na poslední čas, kdy byla položka v archivu zip změněna; tato hodnota je uložena ve LastWriteTime vlastnosti.

Tuto metodu nelze použít k extrakci adresáře; místo toho použijte metodu ExtractToDirectory .

Platí pro