次の方法で共有


PaxTarEntry.ExtendedAttributes プロパティ

定義

このエントリの拡張属性を返します。

public:
 property System::Collections::Generic::IReadOnlyDictionary<System::String ^, System::String ^> ^ ExtendedAttributes { System::Collections::Generic::IReadOnlyDictionary<System::String ^, System::String ^> ^ get(); };
public System.Collections.Generic.IReadOnlyDictionary<string,string> ExtendedAttributes { get; }
member this.ExtendedAttributes : System.Collections.Generic.IReadOnlyDictionary<string, string>
Public ReadOnly Property ExtendedAttributes As IReadOnlyDictionary(Of String, String)

プロパティ値

注釈

拡張属性は、エントリの作成時に指定されます。 を使用して PaxTarEntry(TarEntryType, String, IEnumerable<KeyValuePair<String,String>>) 、拡張属性の独自の列挙を既定のエントリの上の現在のエントリに追加します。 PaxTarEntry(TarEntryType, String)既定の拡張属性のみを使用するには、 を使用します。

以下の項目は、すべてのPAX項目の拡張属性ディクショナリ内に常に見つかります。

  • 名前 mtimeの下の変更時刻を数値で指定 Double します。
  • アクセス時間 (名前 atimeの下) を数値で指定 Double します。
  • 名前 ctimeの下の時間を数値で Double 変更します。
  • パス (名前 pathの下) を文字列として指定します。

次の項目は、特定の条件が満たされた場合にのみ、PAX 項目の拡張属性ディクショナリ内にあります。

  • 32 バイトを超える場合は、グループ名を文字列として名前 gnameの下に指定します。
  • 32 バイトを超える場合は、名前の下のユーザー名 unameを文字列として指定します。
  • 番号の文字列表現が 12 バイトを超える場合は、 という名前sizeInt32のファイルの長さ。

適用対象