Partilhar via


V7TarEntry Construtores

Definição

Sobrecargas

V7TarEntry(TarEntry)

Inicializa uma nova V7TarEntry instância convertendo a entrada especificada other no formato V7.

V7TarEntry(TarEntryType, String)

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

V7TarEntry(TarEntry)

Origem:
V7TarEntry.cs
Origem:
V7TarEntry.cs
Origem:
V7TarEntry.cs

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

Parâmetros

other
TarEntry

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

Exceções

other é um PaxGlobalExtendedAttributesTarEntry e não pode ser convertido.

-ou-

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

Aplica-se a

V7TarEntry(TarEntryType, String)

Origem:
V7TarEntry.cs
Origem:
V7TarEntry.cs
Origem:
V7TarEntry.cs

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

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)

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 V7.

Comentários

Ao criar uma instância usando o V7TarEntry(TarEntryType, String) construtor , há suporte apenas para os seguintes tipos de entrada: Directory, HardLink, SymbolicLinke V7RegularFile.

Aplica-se a