ZipArchiveEntry.FullName Właściwość
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.
Pobiera ścieżkę względną wpisu w archiwum zip.
public:
property System::String ^ FullName { System::String ^ get(); };
public string FullName { get; }
member this.FullName : string
Public ReadOnly Property FullName As String
Wartość właściwości
Ścieżka względna wpisu w archiwum zip.
Uwagi
Właściwość FullName zawiera ścieżkę względną, w tym hierarchię podkatalogu wpisu w archiwum zip. (Natomiast Name właściwość zawiera tylko nazwę wpisu i nie zawiera hierarchii podkatalogów). Jeśli na przykład utworzysz dwa wpisy w archiwum zip przy użyciu CreateEntryFromFile metody i podaj NewEntry.txt
jako nazwę pierwszego wpisu i AddedFolder\\NewEntry.txt
drugiego wpisu, oba wpisy będą miały NewEntry.txt
we Name właściwości . Pierwszy wpis będzie również miał NewEntry.txt
we FullName właściwości , ale drugi wpis będzie miał AddedFolder\\NewEntry.txt
we FullName właściwości .
Można określić dowolny ciąg jako ścieżkę wpisu, w tym ciągi, które określają nieprawidłowe i bezwzględne ścieżki. W związku z tym FullName właściwość może zawierać wartość, która nie jest poprawnie sformatowana. Nieprawidłowa lub bezwzględna ścieżka może spowodować wyjątek podczas wyodrębniania zawartości archiwum zip.
Przykłady
W poniższym przykładzie pokazano, jak iterować zawartość pliku .zip i wyodrębniać pliki zawierające rozszerzenie .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