Partilhar via


UstarTarEntry Construtores

Definição

Sobrecargas

UstarTarEntry(TarEntry)

Inicializa uma nova UstarTarEntry instância convertendo a entrada especificada other no formato Ustar.

UstarTarEntry(TarEntryType, String)

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

UstarTarEntry(TarEntry)

Origem:
UstarTarEntry.cs
Origem:
UstarTarEntry.cs
Origem:
UstarTarEntry.cs

Inicializa uma nova UstarTarEntry instância convertendo a entrada especificada other no formato Ustar.

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

Parâmetros

other
TarEntry

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

Exceções

other é uma PaxGlobalExtendedAttributesTarEntry instância.

-ou-

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

Aplica-se a

UstarTarEntry(TarEntryType, String)

Origem:
UstarTarEntry.cs
Origem:
UstarTarEntry.cs
Origem:
UstarTarEntry.cs

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

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

Comentários

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

Aplica-se a