Freigeben über


GnuTarEntry Konstruktoren

Definition

Überlädt

GnuTarEntry(TarEntry)

Initialisiert eine neue GnuTarEntry instance, indem der angegebene other Eintrag in das GNU-Format konvertiert wird.

GnuTarEntry(TarEntryType, String)

Initialisiert eine neue GnuTarEntry instance mit dem angegebenen Eintragstyp und Dem angegebenen Eintragsnamen.

GnuTarEntry(TarEntry)

Quelle:
GnuTarEntry.cs
Quelle:
GnuTarEntry.cs
Quelle:
GnuTarEntry.cs

Initialisiert eine neue GnuTarEntry instance, indem der angegebene other Eintrag in das GNU-Format konvertiert wird.

public:
 GnuTarEntry(System::Formats::Tar::TarEntry ^ other);
public GnuTarEntry (System.Formats.Tar.TarEntry other);
new System.Formats.Tar.GnuTarEntry : System.Formats.Tar.TarEntry -> System.Formats.Tar.GnuTarEntry
Public Sub New (other As TarEntry)

Parameter

other
TarEntry

Die TarEntry instance, um in das GNU-Format zu konvertieren.

Ausnahmen

otherist ein PaxGlobalExtendedAttributesTarEntry instance.

Oder

Der Eintragstyp von other wird im GNU-Format nicht unterstützt.

Gilt für:

GnuTarEntry(TarEntryType, String)

Quelle:
GnuTarEntry.cs
Quelle:
GnuTarEntry.cs
Quelle:
GnuTarEntry.cs

Initialisiert eine neue GnuTarEntry instance mit dem angegebenen Eintragstyp und Dem angegebenen Eintragsnamen.

public:
 GnuTarEntry(System::Formats::Tar::TarEntryType entryType, System::String ^ entryName);
public GnuTarEntry (System.Formats.Tar.TarEntryType entryType, string entryName);
new System.Formats.Tar.GnuTarEntry : System.Formats.Tar.TarEntryType * string -> System.Formats.Tar.GnuTarEntry
Public Sub New (entryType As TarEntryType, entryName As String)

Parameter

entryType
TarEntryType

Der Typ des Eintrags.

entryName
String

Eine Zeichenfolge mit dem Pfad und Dateinamen dieses Eintrags.

Ausnahmen

entryName ist null.

entryName ist leer.

- oder -

Der Eintragstyp wird für das Erstellen eines Eintrags im GNU-Format nicht unterstützt.

Hinweise

Beim Erstellen eines instance mithilfe des GnuTarEntry(TarEntryType, String) Konstruktors werden nur die folgenden Eintragstypen unterstützt: Directory, , HardLinkSymbolicLink, RegularFile, BlockDevice, CharacterDeviceund Fifo.

Gilt für: