Partager via


V7TarEntry Constructeurs

Définition

Surcharges

V7TarEntry(TarEntry)

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

V7TarEntry(TarEntryType, String)

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

V7TarEntry(TarEntry)

Source:
V7TarEntry.cs
Source:
V7TarEntry.cs
Source:
V7TarEntry.cs

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

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

Paramètres

other
TarEntry

Instance TarEntry à convertir au format V7.

Exceptions

other est un PaxGlobalExtendedAttributesTarEntry et ne peut pas être converti.

-ou-

Le type d’entrée de other n’est pas pris en charge dans le format V7.

S’applique à

V7TarEntry(TarEntryType, String)

Source:
V7TarEntry.cs
Source:
V7TarEntry.cs
Source:
V7TarEntry.cs

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

public:
 V7TarEntry(System::Formats::Tar::TarEntryType entryType, System::String ^ entryName);
public V7TarEntry (System.Formats.Tar.TarEntryType entryType, string entryName);
new System.Formats.Tar.V7TarEntry : System.Formats.Tar.TarEntryType * string -> System.Formats.Tar.V7TarEntry
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 V7.

Remarques

Lors de la création d’un instance à l’aide du V7TarEntry(TarEntryType, String) constructeur, seuls les types d’entrée suivants sont pris en charge : Directory, HardLink, SymbolicLinket V7RegularFile.

S’applique à