共用方式為


GnuTarEntry 建構函式

定義

多載

GnuTarEntry(TarEntry)

藉由將指定的other項目轉換成 GNU 格式,初始化新的GnuTarEntry實例。

GnuTarEntry(TarEntryType, String)

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

GnuTarEntry(TarEntry)

來源:
GnuTarEntry.cs
來源:
GnuTarEntry.cs
來源:
GnuTarEntry.cs

藉由將指定的other項目轉換成 GNU 格式,初始化新的GnuTarEntry實例。

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

參數

other
TarEntry

TarEntry要轉換成 GNU 格式的實例。

例外狀況

otherPaxGlobalExtendedAttributesTarEntry是 實例。

-或-

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

適用於

GnuTarEntry(TarEntryType, String)

來源:
GnuTarEntry.cs
來源:
GnuTarEntry.cs
來源:
GnuTarEntry.cs

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

public:
 GnuTarEntry(System::Formats::Tar::TarEntryType entryType, System::String ^ entryName);
public GnuTarEntry (System.Formats.Tar.TarEntryType entryType, string entryName);
new System.Formats.Tar.GnuTarEntry : System.Formats.Tar.TarEntryType * string -> System.Formats.Tar.GnuTarEntry
Public Sub New (entryType As TarEntryType, entryName As String)

參數

entryType
TarEntryType

專案的型別。

entryName
String

具有這個項目路徑和檔名的字串。

例外狀況

entryNamenull

entryName 是空的。

-或-

不支援以 GNU 格式建立項目的項目類型。

備註

使用GnuTarEntry(TarEntryType, String)建構函式建立實體時,僅支援下列項目類型:DirectoryHardLink、、、SymbolicLinkRegularFileBlockDeviceCharacterDeviceFifo

適用於