UstarTarEntry 构造函数

定义

重载

UstarTarEntry(TarEntry)

通过将指定的other条目转换为 Ustar 格式来初始化新UstarTarEntry实例。

UstarTarEntry(TarEntryType, String)

使用指定的条目类型和条目名称初始化新 UstarTarEntry 实例。

UstarTarEntry(TarEntry)

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

通过将指定的other条目转换为 Ustar 格式来初始化新UstarTarEntry实例。

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)

参数

other
TarEntry

TarEntry 转换为 Ustar 格式的实例。

例外

other 是实例 PaxGlobalExtendedAttributesTarEntry

-或-

Ustar 格式不支持 的 other 条目类型。

适用于

UstarTarEntry(TarEntryType, String)

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

使用指定的条目类型和条目名称初始化新 UstarTarEntry 实例。

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)

参数

entryType
TarEntryType

条目的类型。

entryName
String

包含此项的路径和文件名的字符串。

例外

entryNamenull

entryName 为空。

- 或 -

不支持以 Ustar 格式创建条目类型。

注解

使用 UstarTarEntry(TarEntryType, String) 构造函数创建实例时,仅支持以下条目类型:Directory、、HardLinkSymbolicLinkRegularFileBlockDeviceCharacterDeviceFifo

适用于