343 references to TarEntryType
Microsoft.DotNet.SignTool (2)
src\ZipData.cs (2)
625
if (tar.EntryType ==
TarEntryType
.Directory ||
626
(skipSymlinks && tar.EntryType ==
TarEntryType
.SymbolicLink))
System.Formats.Tar (341)
System\Formats\Tar\GnuTarEntry.cs (10)
25
/// <para>When creating an instance using the <see cref="GnuTarEntry(
TarEntryType
, string)"/> constructor, only the following entry types are supported:</para>
27
/// <item>In all platforms: <see cref="
TarEntryType
.Directory"/>, <see cref="
TarEntryType
.HardLink"/>, <see cref="
TarEntryType
.SymbolicLink"/>, <see cref="
TarEntryType
.RegularFile"/>.</item>
28
/// <item>In Unix platforms only: <see cref="
TarEntryType
.BlockDevice"/>, <see cref="
TarEntryType
.CharacterDevice"/> and <see cref="
TarEntryType
.Fifo"/>.</item>
35
public GnuTarEntry(
TarEntryType
entryType, string entryName)
105
internal override bool IsDataStreamSetterSupported() => EntryType is
TarEntryType
.RegularFile;
System\Formats\Tar\PaxGlobalExtendedAttributesTarEntry.cs (1)
28
: base(
TarEntryType
.GlobalExtendedAttributes, nameof(PaxGlobalExtendedAttributesTarEntry), TarEntryFormat.Pax, isGea: true) // Name == name of type for lack of a better temporary name until the entry is written
System\Formats\Tar\PaxTarEntry.cs (22)
28
/// <remarks><para>When creating an instance using the <see cref="PaxTarEntry(
TarEntryType
, string)"/> constructor, only the following entry types are supported:</para>
30
/// <item>In all platforms: <see cref="
TarEntryType
.Directory"/>, <see cref="
TarEntryType
.HardLink"/>, <see cref="
TarEntryType
.SymbolicLink"/>, <see cref="
TarEntryType
.RegularFile"/>.</item>
31
/// <item>In Unix platforms only: <see cref="
TarEntryType
.BlockDevice"/>, <see cref="
TarEntryType
.CharacterDevice"/> and <see cref="
TarEntryType
.Fifo"/>.</item>
33
/// <para>Use the <see cref="PaxTarEntry(
TarEntryType
, string, IEnumerable{KeyValuePair{string, string}})"/> constructor to include additional extended attributes when creating the entry.</para>
52
public PaxTarEntry(
TarEntryType
entryType, string entryName)
67
/// <remarks>When creating an instance using the <see cref="PaxTarEntry(
TarEntryType
, string)"/> constructor, only the following entry types are supported:
69
/// <item>In all platforms: <see cref="
TarEntryType
.Directory"/>, <see cref="
TarEntryType
.HardLink"/>, <see cref="
TarEntryType
.SymbolicLink"/>, <see cref="
TarEntryType
.RegularFile"/>.</item>
70
/// <item>In Unix platforms only: <see cref="
TarEntryType
.BlockDevice"/>, <see cref="
TarEntryType
.CharacterDevice"/> and <see cref="
TarEntryType
.Fifo"/>.</item>
91
public PaxTarEntry(
TarEntryType
entryType, string entryName, IEnumerable<KeyValuePair<string, string>> extendedAttributes)
145
/// <remarks>The extended attributes are specified when constructing an entry. Use <see cref="PaxTarEntry(
TarEntryType
, string, IEnumerable{KeyValuePair{string, string}})"/> to append your own enumeration of extended attributes to the current entry on top of the default ones. Use <see cref="PaxTarEntry(
TarEntryType
, string)"/> to only use the default extended attributes.
163
internal override bool IsDataStreamSetterSupported() => EntryType ==
TarEntryType
.RegularFile;
System\Formats\Tar\PosixTarEntry.cs (5)
22
internal PosixTarEntry(
TarEntryType
entryType, string entryName, TarEntryFormat format, bool isGea)
59
if (_header._typeFlag is not
TarEntryType
.BlockDevice and not
TarEntryType
.CharacterDevice)
85
if (_header._typeFlag is not
TarEntryType
.BlockDevice and not
TarEntryType
.CharacterDevice)
System\Formats\Tar\TarEntry.cs (62)
37
internal TarEntry(
TarEntryType
entryType, string entryName, TarEntryFormat format, bool isGea)
41
Debug.Assert(!isGea || entryType is
TarEntryType
.GlobalExtendedAttributes);
60
TarEntryType
compatibleEntryType = TarHelpers.GetCorrectTypeFlagForFormat(format, other.EntryType);
77
public
TarEntryType
EntryType => _header._typeFlag;
115
/// <remarks>The entry type that commonly contains data is <see cref="
TarEntryType
.RegularFile"/> (or <see cref="
TarEntryType
.V7RegularFile"/> in the <see cref="TarEntryFormat.V7"/> format). Other uncommon entry types that can also contain data are: <see cref="
TarEntryType
.ContiguousFile"/>, <see cref="
TarEntryType
.DirectoryList"/>, <see cref="
TarEntryType
.MultiVolume"/> and <see cref="
TarEntryType
.SparseFile"/>.</remarks>
119
/// When the <see cref="EntryType"/> indicates a <see cref="
TarEntryType
.SymbolicLink"/> or a <see cref="
TarEntryType
.HardLink"/>, this property returns the link target path of such link.
121
/// <exception cref="InvalidOperationException">The entry type is not <see cref="
TarEntryType
.HardLink"/> or <see cref="
TarEntryType
.SymbolicLink"/>.</exception>
129
if (_header._typeFlag is not
TarEntryType
.HardLink and not
TarEntryType
.SymbolicLink)
185
/// <remarks><para>Files of type <see cref="
TarEntryType
.BlockDevice"/>, <see cref="
TarEntryType
.CharacterDevice"/> or <see cref="
TarEntryType
.Fifo"/> can only be extracted in Unix platforms.</para>
186
/// <para>Elevation is required to extract a <see cref="
TarEntryType
.BlockDevice"/> or <see cref="
TarEntryType
.CharacterDevice"/> to disk.</para>
203
if (EntryType is
TarEntryType
.SymbolicLink or
TarEntryType
.HardLink or
TarEntryType
.GlobalExtendedAttributes)
217
/// <remarks><para>Files of type <see cref="
TarEntryType
.BlockDevice"/>, <see cref="
TarEntryType
.CharacterDevice"/> or <see cref="
TarEntryType
.Fifo"/> can only be extracted in Unix platforms.</para>
218
/// <para>Elevation is required to extract a <see cref="
TarEntryType
.BlockDevice"/> or <see cref="
TarEntryType
.CharacterDevice"/> to disk.</para></remarks>
237
if (EntryType is
TarEntryType
.SymbolicLink or
TarEntryType
.HardLink or
TarEntryType
.GlobalExtendedAttributes)
250
/// <exception cref="InvalidOperationException">Setting a data section is not supported because the <see cref="EntryType"/> is not <see cref="
TarEntryType
.RegularFile"/> (or <see cref="
TarEntryType
.V7RegularFile"/> for an archive of <see cref="TarEntryFormat.V7"/> format).</exception>
307
if (EntryType ==
TarEntryType
.Directory)
330
if (EntryType ==
TarEntryType
.Directory)
360
if (EntryType is
TarEntryType
.SymbolicLink)
375
else if (EntryType is
TarEntryType
.HardLink)
410
if (EntryType is
TarEntryType
.RegularFile or
TarEntryType
.V7RegularFile or
TarEntryType
.ContiguousFile)
429
if (EntryType is
TarEntryType
.RegularFile or
TarEntryType
.V7RegularFile or
TarEntryType
.ContiguousFile)
442
Debug.Assert(EntryType is not (
TarEntryType
.RegularFile or
TarEntryType
.V7RegularFile or
TarEntryType
.ContiguousFile));
446
case
TarEntryType
.Directory:
447
case
TarEntryType
.DirectoryList:
463
case
TarEntryType
.SymbolicLink:
469
case
TarEntryType
.HardLink:
474
case
TarEntryType
.BlockDevice:
478
case
TarEntryType
.CharacterDevice:
482
case
TarEntryType
.Fifo:
486
case
TarEntryType
.ExtendedAttributes:
487
case
TarEntryType
.GlobalExtendedAttributes:
488
case
TarEntryType
.LongPath:
489
case
TarEntryType
.LongLink:
493
case
TarEntryType
.MultiVolume:
494
case
TarEntryType
.RenamedOrSymlinked:
495
case
TarEntryType
.SparseFile:
496
case
TarEntryType
.TapeVolume:
System\Formats\Tar\TarEntry.Unix.cs (4)
16
Debug.Assert(EntryType is
TarEntryType
.BlockDevice);
23
Debug.Assert(EntryType is
TarEntryType
.CharacterDevice);
30
Debug.Assert(EntryType is
TarEntryType
.Fifo);
37
Debug.Assert(EntryType is
TarEntryType
.HardLink);
System\Formats\Tar\TarFile.cs (22)
160
/// <remarks><para>Files of type <see cref="
TarEntryType
.BlockDevice"/>, <see cref="
TarEntryType
.CharacterDevice"/> or <see cref="
TarEntryType
.Fifo"/> can only be extracted in Unix platforms.</para>
161
/// <para>Elevation is required to extract a <see cref="
TarEntryType
.BlockDevice"/> or <see cref="
TarEntryType
.CharacterDevice"/> to disk.</para></remarks>
201
/// <remarks><para>Files of type <see cref="
TarEntryType
.BlockDevice"/>, <see cref="
TarEntryType
.CharacterDevice"/> or <see cref="
TarEntryType
.Fifo"/> can only be extracted in Unix platforms.</para>
202
/// <para>Elevation is required to extract a <see cref="
TarEntryType
.BlockDevice"/> or <see cref="
TarEntryType
.CharacterDevice"/> to disk.</para></remarks>
244
/// <remarks><para>Files of type <see cref="
TarEntryType
.BlockDevice"/>, <see cref="
TarEntryType
.CharacterDevice"/> or <see cref="
TarEntryType
.Fifo"/> can only be extracted in Unix platforms.</para>
245
/// <para>Elevation is required to extract a <see cref="
TarEntryType
.BlockDevice"/> or <see cref="
TarEntryType
.CharacterDevice"/> to disk.</para></remarks>
287
/// <remarks><para>Files of type <see cref="
TarEntryType
.BlockDevice"/>, <see cref="
TarEntryType
.CharacterDevice"/> or <see cref="
TarEntryType
.Fifo"/> can only be extracted in Unix platforms.</para>
288
/// <para>Elevation is required to extract a <see cref="
TarEntryType
.BlockDevice"/> or <see cref="
TarEntryType
.CharacterDevice"/> to disk.</para></remarks>
465
if (entry.EntryType is not
TarEntryType
.GlobalExtendedAttributes)
510
if (entry.EntryType is not
TarEntryType
.GlobalExtendedAttributes)
System\Formats\Tar\TarHeader.cs (4)
59
internal
TarEntryType
_typeFlag;
90
internal TarHeader(TarEntryFormat format, string name = "", int mode = 0, DateTimeOffset mTime = default,
TarEntryType
typeFlag =
TarEntryType
.RegularFile)
104
internal TarHeader(TarEntryFormat format,
TarEntryType
typeFlag, TarHeader other)
System\Formats\Tar\TarHeader.Read.cs (52)
191
case
TarEntryType
.ExtendedAttributes or
TarEntryType
.GlobalExtendedAttributes:
194
case
TarEntryType
.LongLink or
TarEntryType
.LongPath:
197
case
TarEntryType
.BlockDevice:
198
case
TarEntryType
.CharacterDevice:
199
case
TarEntryType
.Directory:
200
case
TarEntryType
.Fifo:
201
case
TarEntryType
.HardLink:
202
case
TarEntryType
.SymbolicLink:
209
case
TarEntryType
.RegularFile:
210
case
TarEntryType
.V7RegularFile: // Treated as regular file
211
case
TarEntryType
.ContiguousFile: // Treated as regular file
212
case
TarEntryType
.DirectoryList: // Contains the list of filesystem entries in the data section
213
case
TarEntryType
.MultiVolume: // Contains portion of a file
214
case
TarEntryType
.RenamedOrSymlinked: // Might contain data
215
case
TarEntryType
.SparseFile: // Contains portion of a file
216
case
TarEntryType
.TapeVolume: // Might contain data
253
case
TarEntryType
.ExtendedAttributes or
TarEntryType
.GlobalExtendedAttributes:
256
case
TarEntryType
.LongLink or
TarEntryType
.LongPath:
259
case
TarEntryType
.BlockDevice:
260
case
TarEntryType
.CharacterDevice:
261
case
TarEntryType
.Directory:
262
case
TarEntryType
.Fifo:
263
case
TarEntryType
.HardLink:
264
case
TarEntryType
.SymbolicLink:
271
case
TarEntryType
.RegularFile:
272
case
TarEntryType
.V7RegularFile: // Treated as regular file
273
case
TarEntryType
.ContiguousFile: // Treated as regular file
274
case
TarEntryType
.DirectoryList: // Contains the list of filesystem entries in the data section
275
case
TarEntryType
.MultiVolume: // Contains portion of a file
276
case
TarEntryType
.RenamedOrSymlinked: // Might contain data
277
case
TarEntryType
.SparseFile: // Contains portion of a file
278
case
TarEntryType
.TapeVolume: // Might contain data
392
typeFlag: (
TarEntryType
)buffer[FieldLocations.TypeFlag])
405
TarEntryType
.ExtendedAttributes or
406
TarEntryType
.GlobalExtendedAttributes => TarEntryFormat.Pax,
408
TarEntryType
.DirectoryList or
409
TarEntryType
.LongLink or
410
TarEntryType
.LongPath or
411
TarEntryType
.MultiVolume or
412
TarEntryType
.RenamedOrSymlinked or
413
TarEntryType
.TapeVolume => TarEntryFormat.Gnu,
416
TarEntryType
.V7RegularFile => TarEntryFormat.V7,
418
TarEntryType
.SparseFile => throw new NotSupportedException(SR.Format(SR.TarEntryTypeNotSupported, header._typeFlag)),
422
_ => (header._typeFlag ==
TarEntryType
.RegularFile) ? TarEntryFormat.Ustar : TarEntryFormat.V7
527
if (_typeFlag is
TarEntryType
.CharacterDevice or
TarEntryType
.BlockDevice)
695
if (_typeFlag ==
TarEntryType
.LongLink)
699
else if (_typeFlag ==
TarEntryType
.LongPath)
System\Formats\Tar\TarHeader.Write.cs (21)
174
TarEntryType
actualEntryType = TarHelpers.GetCorrectTypeFlagForFormat(TarEntryFormat.V7, _typeFlag);
184
TarEntryType
actualEntryType = TarHelpers.GetCorrectTypeFlagForFormat(TarEntryFormat.Ustar, _typeFlag);
216
Debug.Assert(_typeFlag is
TarEntryType
.GlobalExtendedAttributes);
279
Debug.Assert(_typeFlag is not
TarEntryType
.GlobalExtendedAttributes);
322
Debug.Assert(_typeFlag is not
TarEntryType
.GlobalExtendedAttributes);
452
return GetGnuLongMetadataHeader(dataStream,
TarEntryType
.LongLink);
458
return GetGnuLongMetadataHeader(dataStream,
TarEntryType
.LongPath);
462
private static TarHeader GetGnuLongMetadataHeader(MemoryStream dataStream,
TarEntryType
entryType)
464
Debug.Assert(entryType is
TarEntryType
.LongPath or
TarEntryType
.LongLink);
522
_typeFlag = isGea ?
TarEntryType
.GlobalExtendedAttributes :
TarEntryType
.ExtendedAttributes;
646
private int WriteCommonFields(Span<byte> buffer,
TarEntryType
actualEntryType)
649
Debug.Assert(!string.IsNullOrEmpty(_linkName) ^ (_typeFlag is not
TarEntryType
.SymbolicLink and not
TarEntryType
.HardLink));
791
if (_typeFlag is not
TarEntryType
.LongLink and not
TarEntryType
.LongPath)
965
Debug.Assert(_typeFlag is
TarEntryType
.SymbolicLink or
TarEntryType
.HardLink);
1206
return _typeFlag is
TarEntryType
.Directory or
TarEntryType
.DirectoryList ?
System\Formats\Tar\TarHelpers.cs (35)
48
internal static int GetDefaultMode(
TarEntryType
type)
49
=> type is
TarEntryType
.Directory or
TarEntryType
.DirectoryList ? (int)DefaultDirectoryMode : (int)DefaultFileMode;
200
internal static
TarEntryType
GetCorrectTypeFlagForFormat(TarEntryFormat format,
TarEntryType
entryType)
204
if (entryType is
TarEntryType
.RegularFile)
206
return
TarEntryType
.V7RegularFile;
209
else if (entryType is
TarEntryType
.V7RegularFile)
211
return
TarEntryType
.RegularFile;
332
internal static void ThrowIfEntryTypeNotSupported(
TarEntryType
entryType, TarEntryFormat archiveFormat, [CallerArgumentExpression(nameof(entryType))] string? paramName = null)
338
TarEntryType
.Directory or
339
TarEntryType
.HardLink or
340
TarEntryType
.V7RegularFile or
341
TarEntryType
.SymbolicLink)
349
TarEntryType
.BlockDevice or
350
TarEntryType
.CharacterDevice or
351
TarEntryType
.Directory or
352
TarEntryType
.Fifo or
353
TarEntryType
.HardLink or
354
TarEntryType
.RegularFile or
355
TarEntryType
.SymbolicLink)
363
TarEntryType
.BlockDevice or
364
TarEntryType
.CharacterDevice or
365
TarEntryType
.Directory or
366
TarEntryType
.Fifo or
367
TarEntryType
.HardLink or
368
TarEntryType
.RegularFile or
369
TarEntryType
.SymbolicLink)
381
TarEntryType
.BlockDevice or
382
TarEntryType
.CharacterDevice or
383
TarEntryType
.Directory or
384
TarEntryType
.Fifo or
385
TarEntryType
.HardLink or
386
TarEntryType
.RegularFile or
387
TarEntryType
.SymbolicLink)
System\Formats\Tar\TarReader.cs (41)
138
TarEntryFormat.Pax => header._typeFlag is
TarEntryType
.GlobalExtendedAttributes ?
291
TarEntryFormat.Pax => header._typeFlag is
TarEntryType
.GlobalExtendedAttributes ?
331
if (header._typeFlag is
TarEntryType
.ExtendedAttributes)
340
else if (header._typeFlag is
TarEntryType
.LongLink or
TarEntryType
.LongPath)
372
if (header._typeFlag is
TarEntryType
.ExtendedAttributes)
382
else if (header._typeFlag is
TarEntryType
.LongLink or
TarEntryType
.LongPath)
409
if (actualHeader._typeFlag is
TarEntryType
.GlobalExtendedAttributes or
410
TarEntryType
.ExtendedAttributes or
411
TarEntryType
.LongLink or
412
TarEntryType
.LongPath)
414
throw new InvalidDataException(SR.Format(SR.TarUnexpectedMetadataEntry, actualHeader._typeFlag,
TarEntryType
.ExtendedAttributes));
441
if (actualHeader._typeFlag is
TarEntryType
.GlobalExtendedAttributes or
442
TarEntryType
.ExtendedAttributes or
443
TarEntryType
.LongLink or
444
TarEntryType
.LongPath)
446
throw new InvalidDataException(SR.Format(SR.TarUnexpectedMetadataEntry, actualHeader._typeFlag,
TarEntryType
.ExtendedAttributes));
450
if (actualHeader._typeFlag is
TarEntryType
.ExtendedAttributes)
452
throw new InvalidDataException(SR.Format(SR.TarUnexpectedMetadataEntry,
TarEntryType
.ExtendedAttributes,
TarEntryType
.ExtendedAttributes));
485
if ((header._typeFlag is
TarEntryType
.LongLink && secondHeader._typeFlag is
TarEntryType
.LongPath) ||
486
(header._typeFlag is
TarEntryType
.LongPath && secondHeader._typeFlag is
TarEntryType
.LongLink))
497
if (thirdHeader._typeFlag is
TarEntryType
.LongLink or
TarEntryType
.LongPath)
502
if (header._typeFlag is
TarEntryType
.LongLink)
510
else if (header._typeFlag is
TarEntryType
.LongPath)
523
if (header._typeFlag is
TarEntryType
.LongLink)
528
else if (header._typeFlag is
TarEntryType
.LongPath)
562
if ((header._typeFlag is
TarEntryType
.LongLink && secondHeader._typeFlag is
TarEntryType
.LongPath) ||
563
(header._typeFlag is
TarEntryType
.LongPath && secondHeader._typeFlag is
TarEntryType
.LongLink))
573
if (thirdHeader._typeFlag is
TarEntryType
.LongLink or
TarEntryType
.LongPath)
578
if (header._typeFlag is
TarEntryType
.LongLink)
586
else if (header._typeFlag is
TarEntryType
.LongPath)
599
if (header._typeFlag is
TarEntryType
.LongLink)
604
else if (header._typeFlag is
TarEntryType
.LongPath)
System\Formats\Tar\TarWriter.cs (31)
207
/// <item><see cref="
TarEntryType
.Directory"/></item>
208
/// <item><see cref="
TarEntryType
.HardLink"/></item>
209
/// <item><see cref="
TarEntryType
.SymbolicLink"/></item>
210
/// <item><see cref="
TarEntryType
.V7RegularFile"/></item>
216
/// <item><see cref="
TarEntryType
.BlockDevice"/></item>
217
/// <item><see cref="
TarEntryType
.CharacterDevice"/></item>
218
/// <item><see cref="
TarEntryType
.Directory"/></item>
219
/// <item><see cref="
TarEntryType
.Fifo"/></item>
220
/// <item><see cref="
TarEntryType
.HardLink"/></item>
221
/// <item><see cref="
TarEntryType
.RegularFile"/></item>
222
/// <item><see cref="
TarEntryType
.SymbolicLink"/></item>
227
/// <exception cref="ArgumentException">The entry type is <see cref="
TarEntryType
.HardLink"/> or <see cref="
TarEntryType
.SymbolicLink"/> and the <see cref="TarEntry.LinkName"/> is <see langword="null"/> or empty.</exception>
255
/// <item><see cref="
TarEntryType
.Directory"/></item>
256
/// <item><see cref="
TarEntryType
.HardLink"/></item>
257
/// <item><see cref="
TarEntryType
.SymbolicLink"/></item>
258
/// <item><see cref="
TarEntryType
.V7RegularFile"/></item>
264
/// <item><see cref="
TarEntryType
.BlockDevice"/></item>
265
/// <item><see cref="
TarEntryType
.CharacterDevice"/></item>
266
/// <item><see cref="
TarEntryType
.Directory"/></item>
267
/// <item><see cref="
TarEntryType
.Fifo"/></item>
268
/// <item><see cref="
TarEntryType
.HardLink"/></item>
269
/// <item><see cref="
TarEntryType
.RegularFile"/></item>
270
/// <item><see cref="
TarEntryType
.SymbolicLink"/></item>
275
/// <exception cref="ArgumentException">The entry type is <see cref="
TarEntryType
.HardLink"/> or <see cref="
TarEntryType
.SymbolicLink"/> and the <see cref="TarEntry.LinkName"/> is <see langword="null"/> or empty.</exception>
310
if (entry._header._typeFlag is
TarEntryType
.GlobalExtendedAttributes)
345
TarEntryFormat.Pax when entry._header._typeFlag is
TarEntryType
.GlobalExtendedAttributes => entry._header.WriteAsPaxGlobalExtendedAttributesAsync(_archiveStream, buffer, _nextGlobalExtendedAttributesEntryNumber++, cancellationToken),
402
private static void ValidateEntryLinkName(
TarEntryType
entryType, string? linkName)
404
if (entryType is
TarEntryType
.HardLink or
TarEntryType
.SymbolicLink)
System\Formats\Tar\TarWriter.Unix.cs (14)
28
TarEntryType
entryType = (status.Mode & (uint)Interop.Sys.FileTypes.S_IFMT) switch
32
Interop.Sys.FileTypes.S_IFBLK =>
TarEntryType
.BlockDevice,
33
Interop.Sys.FileTypes.S_IFCHR =>
TarEntryType
.CharacterDevice,
34
Interop.Sys.FileTypes.S_IFIFO =>
TarEntryType
.Fifo,
35
Interop.Sys.FileTypes.S_IFLNK =>
TarEntryType
.SymbolicLink,
36
Interop.Sys.FileTypes.S_IFREG => Format is TarEntryFormat.V7 ?
TarEntryType
.V7RegularFile :
TarEntryType
.RegularFile,
37
Interop.Sys.FileTypes.S_IFDIR =>
TarEntryType
.Directory,
41
FileSystemInfo info = entryType is
TarEntryType
.Directory ? new DirectoryInfo(fullPath) : new FileInfo(fullPath);
52
if (entryType is
TarEntryType
.BlockDevice or
TarEntryType
.CharacterDevice)
95
if (entry.EntryType ==
TarEntryType
.SymbolicLink)
100
if (entry.EntryType is
TarEntryType
.RegularFile or
TarEntryType
.V7RegularFile)
System\Formats\Tar\UstarTarEntry.cs (10)
22
/// <remarks>When creating an instance using the <see cref="UstarTarEntry(
TarEntryType
, string)"/> constructor, only the following entry types are supported:
24
/// <item>In all platforms: <see cref="
TarEntryType
.Directory"/>, <see cref="
TarEntryType
.HardLink"/>, <see cref="
TarEntryType
.SymbolicLink"/>, <see cref="
TarEntryType
.RegularFile"/>.</item>
25
/// <item>In Unix platforms only: <see cref="
TarEntryType
.BlockDevice"/>, <see cref="
TarEntryType
.CharacterDevice"/> and <see cref="
TarEntryType
.Fifo"/>.</item>
32
public UstarTarEntry(
TarEntryType
entryType, string entryName)
58
internal override bool IsDataStreamSetterSupported() => EntryType ==
TarEntryType
.RegularFile;
System\Formats\Tar\V7TarEntry.cs (7)
22
/// <remarks>When creating an instance using the <see cref="V7TarEntry(
TarEntryType
, string)"/> constructor, only the following entry types are supported: <see cref="
TarEntryType
.Directory"/>, <see cref="
TarEntryType
.HardLink"/>, <see cref="
TarEntryType
.SymbolicLink"/> and <see cref="
TarEntryType
.V7RegularFile"/>.</remarks>
27
public V7TarEntry(
TarEntryType
entryType, string entryName)
44
internal override bool IsDataStreamSetterSupported() => EntryType ==
TarEntryType
.V7RegularFile;