Compartilhar via


GnuTarEntry Construtores

Definição

Sobrecargas

GnuTarEntry(TarEntry)

Inicializa uma nova GnuTarEntry instância convertendo a entrada especificada other no formato GNU.

GnuTarEntry(TarEntryType, String)

Inicializa uma nova GnuTarEntry instância com o tipo de entrada e o nome de entrada especificados.

GnuTarEntry(TarEntry)

Origem:
GnuTarEntry.cs
Origem:
GnuTarEntry.cs
Origem:
GnuTarEntry.cs

Inicializa uma nova GnuTarEntry instância convertendo a entrada especificada other no formato 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)

Parâmetros

other
TarEntry

A TarEntry instância a ser convertida no formato GNU.

Exceções

other é uma PaxGlobalExtendedAttributesTarEntry instância.

-ou-

Não há suporte para o tipo de entrada de other no formato GNU.

Aplica-se a

GnuTarEntry(TarEntryType, String)

Origem:
GnuTarEntry.cs
Origem:
GnuTarEntry.cs
Origem:
GnuTarEntry.cs

Inicializa uma nova GnuTarEntry instância com o tipo de entrada e o nome de entrada especificados.

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)

Parâmetros

entryType
TarEntryType

O tipo da entrada.

entryName
String

Uma cadeia de caracteres com o caminho e o nome do arquivo dessa entrada.

Exceções

entryName é null.

entryName está vazio.

- ou -

Não há suporte para o tipo de entrada para criar uma entrada no formato GNU.

Comentários

Ao criar uma instância usando o GnuTarEntry(TarEntryType, String) construtor, somente os seguintes tipos de entrada têm suporte: Directory, , HardLink, SymbolicLink, RegularFile, BlockDevice, CharacterDevicee Fifo.

Aplica-se a