Partager via


GnuTarEntry Constructeurs

Définition

Surcharges

GnuTarEntry(TarEntry)

Initialise une nouvelle GnuTarEntry instance en convertissant l’entrée spécifiée other au format GNU.

GnuTarEntry(TarEntryType, String)

Initialise une nouvelle GnuTarEntry instance avec le type d’entrée et le nom d’entrée spécifiés.

GnuTarEntry(TarEntry)

Source:
GnuTarEntry.cs
Source:
GnuTarEntry.cs
Source:
GnuTarEntry.cs

Initialise une nouvelle GnuTarEntry instance en convertissant l’entrée spécifiée other au format 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)

Paramètres

other
TarEntry

Le TarEntry instance à convertir au format GNU.

Exceptions

otherest un PaxGlobalExtendedAttributesTarEntry instance.

-ou-

Le type d’entrée de n’est other pas pris en charge au format GNU.

S’applique à

GnuTarEntry(TarEntryType, String)

Source:
GnuTarEntry.cs
Source:
GnuTarEntry.cs
Source:
GnuTarEntry.cs

Initialise une nouvelle GnuTarEntry instance avec le type d’entrée et le nom d’entrée spécifiés.

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)

Paramètres

entryType
TarEntryType

Type de l’entrée.

entryName
String

Chaîne avec le chemin d’accès et le nom de fichier de cette entrée.

Exceptions

entryName a la valeur null.

entryName est vide.

- ou -

Le type d’entrée n’est pas pris en charge pour la création d’une entrée au format GNU.

Remarques

Lors de la création d’un instance à l’aide du GnuTarEntry(TarEntryType, String) constructeur, seuls les types d’entrée suivants sont pris en charge : Directory, SymbolicLinkHardLink, RegularFile, BlockDevice, CharacterDevice, et Fifo.

S’applique à