Sdílet prostřednictvím


GnuTarEntry Konstruktory

Definice

Přetížení

GnuTarEntry(TarEntry)

Inicializuje novou GnuTarEntry instanci převodem zadané other položky do formátu GNU.

GnuTarEntry(TarEntryType, String)

Inicializuje novou GnuTarEntry instanci se zadaným typem položky a názvem položky.

GnuTarEntry(TarEntry)

Zdroj:
GnuTarEntry.cs
Zdroj:
GnuTarEntry.cs
Zdroj:
GnuTarEntry.cs

Inicializuje novou GnuTarEntry instanci převodem zadané other položky do formátu GNU.

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)

Parametry

other
TarEntry

Instance TarEntry , která se má převést do formátu GNU.

Výjimky

otherPaxGlobalExtendedAttributesTarEntry je instance.

-nebo-

Typ položky other není ve formátu GNU podporován.

Platí pro

GnuTarEntry(TarEntryType, String)

Zdroj:
GnuTarEntry.cs
Zdroj:
GnuTarEntry.cs
Zdroj:
GnuTarEntry.cs

Inicializuje novou GnuTarEntry instanci se zadaným typem položky a názvem položky.

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)

Parametry

entryType
TarEntryType

Typ položky.

entryName
String

Řetězec s cestou a názvem souboru této položky.

Výjimky

entryName je null.

entryName je prázdný.

-nebo-

Typ položky není podporován pro vytvoření položky ve formátu GNU.

Poznámky

Při vytváření instance pomocí konstruktoru GnuTarEntry(TarEntryType, String) jsou podporovány pouze následující typy položek: Directory, HardLink, SymbolicLink, RegularFile, BlockDevice, , CharacterDevicea Fifo.

Platí pro