共用方式為


UstarTarEntry 建構函式

定義

多載

UstarTarEntry(TarEntry)

將指定的other項目轉換成 Ustar 格式,以初始化新的UstarTarEntry實例。

UstarTarEntry(TarEntryType, String)

使用指定的專案類型和專案名稱,初始化新的 UstarTarEntry 實例。

UstarTarEntry(TarEntry)

來源:
UstarTarEntry.cs
來源:
UstarTarEntry.cs
來源:
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 格式的實例。

例外狀況

otherPaxGlobalExtendedAttributesTarEntry是 實例。

-或-

的輸入類型 other 不支援 Ustar 格式。

適用於

UstarTarEntry(TarEntryType, String)

來源:
UstarTarEntry.cs
來源:
UstarTarEntry.cs
來源:
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)建構函式建立實體時,僅支援下列項目類型:DirectoryHardLink、、、SymbolicLinkRegularFileBlockDeviceCharacterDeviceFifo

適用於