ZipFileExtensions Klasa
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Udostępnia metody rozszerzenia dla ZipArchive klas i ZipArchiveEntry .
public ref class ZipFileExtensions abstract sealed
public static class ZipFileExtensions
type ZipFileExtensions = class
Public Module ZipFileExtensions
- Dziedziczenie
-
ZipFileExtensions
Uwagi
Klasa ZipFileExtensions zawiera tylko metody statyczne, które rozszerzają ZipArchive klasy i ZipArchiveEntry . Nie można utworzyć wystąpienia ZipFileExtensions klasy . Zamiast tego należy użyć tych metod z wystąpień ZipArchive klasy lub ZipArchiveEntry.
Aby użyć metod rozszerzenia, należy odwołać się do System.IO.Compression.FileSystem
zestawu w projekcie. Zestaw System.IO.Compression.FileSystem
nie jest dostępny w aplikacjach ze sklepu Windows 8.x. ZipFileExtensions W związku z tym klasy i ZipFile (z których oba znajdują się w zestawie) nie są dostępne w aplikacjach ze sklepu System.IO.Compression.FileSystem
Windows 8.x. W aplikacjach ze sklepu Windows 8.x można pracować ze skompresowanymi plikami przy użyciu metod w ZipArchivesystemach , ZipArchiveEntry, DeflateStreami GZipStream.
Klasa ZipFileExtensions zawiera cztery metody, które rozszerzają klasę ZipArchive:
Klasa ZipFileExtensions zawiera dwie metody, które rozszerzają klasę ZipArchiveEntry:
Przykłady
W poniższym przykładzie pokazano, jak utworzyć nowy wpis w archiwum zip z istniejącego pliku i wyodrębnić zawartość archiwum do katalogu.
using System;
using System.IO;
using System.IO.Compression;
namespace ConsoleApplication
{
class Program
{
static void Main(string[] args)
{
string zipPath = @"c:\users\exampleuser\start.zip";
string extractPath = @"c:\users\exampleuser\extract";
string newFile = @"c:\users\exampleuser\NewFile.txt";
using (ZipArchive archive = ZipFile.Open(zipPath, ZipArchiveMode.Update))
{
archive.CreateEntryFromFile(newFile, "NewEntry.txt");
archive.ExtractToDirectory(extractPath);
}
}
}
}
Imports System.IO
Imports System.IO.Compression
Module Module1
Sub Main()
Dim zipPath As String = "c:\users\exampleuser\end.zip"
Dim extractPath As String = "c:\users\exampleuser\extract"
Dim newFile As String = "c:\users\exampleuser\NewFile.txt"
Using archive As ZipArchive = ZipFile.Open(zipPath, ZipArchiveMode.Update)
archive.CreateEntryFromFile(newFile, "NewEntry.txt", CompressionLevel.Fastest)
archive.ExtractToDirectory(extractPath)
End Using
End Sub
End Module
W poniższym przykładzie pokazano, jak iterować zawartość archiwum zip i wyodrębniać pliki z rozszerzeniem .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
Metody
CreateEntryFromFile(ZipArchive, String, String) |
Archiwizuje plik, kompresując go i dodając go do archiwum zip. |
CreateEntryFromFile(ZipArchive, String, String, CompressionLevel) |
Archiwizuje plik, kompresując go przy użyciu określonego poziomu kompresji i dodając go do archiwum zip. |
ExtractToDirectory(ZipArchive, String) |
Wyodrębnia wszystkie pliki z archiwum zip do katalogu w systemie plików. |
ExtractToDirectory(ZipArchive, String, Boolean) |
Wyodrębnia wszystkie pliki z archiwum do katalogu w systemie plików. |
ExtractToFile(ZipArchiveEntry, String) |
Wyodrębnia wpis w archiwum zip do pliku. |
ExtractToFile(ZipArchiveEntry, String, Boolean) |
Wyodrębnia wpis w archiwum zip do pliku i opcjonalnie zastępuje istniejący plik o tej samej nazwie. |