Compartir a través de


UstarTarEntry Constructores

Definición

Sobrecargas

UstarTarEntry(TarEntry)

Inicializa una nueva UstarTarEntry instancia convirtiendo la entrada especificada other en el formato Ustar.

UstarTarEntry(TarEntryType, String)

Inicializa una nueva UstarTarEntry instancia con el tipo de entrada y el nombre de entrada especificados.

UstarTarEntry(TarEntry)

Source:
UstarTarEntry.cs
Source:
UstarTarEntry.cs
Source:
UstarTarEntry.cs

Inicializa una nueva UstarTarEntry instancia convirtiendo la entrada especificada other en el 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

Instancia TarEntry de que se va a convertir al formato Ustar.

Excepciones

other es una PaxGlobalExtendedAttributesTarEntry instancia de .

O bien

El tipo de entrada de other no se admite en el formato Ustar.

Se aplica a

UstarTarEntry(TarEntryType, String)

Source:
UstarTarEntry.cs
Source:
UstarTarEntry.cs
Source:
UstarTarEntry.cs

Inicializa una nueva UstarTarEntry instancia con el tipo de entrada y el nombre 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

Tipo de la entrada.

entryName
String

Cadena con la ruta de acceso y el nombre de archivo de esta entrada.

Excepciones

entryName es null.

entryName está vacía.

o bien

El tipo de entrada no se admite para crear una entrada en el formato Ustar.

Comentarios

Al crear una instancia mediante el UstarTarEntry(TarEntryType, String) constructor , solo se admiten los siguientes tipos de entrada: Directory, HardLink, BlockDeviceSymbolicLinkRegularFile, , CharacterDevice, y .Fifo

Se aplica a