371 references to TarEntryType
aspire (11)
Agents\AspireSkills\AspireSkillsBundleProvider.cs (5)
499
case
TarEntryType
.Directory:
503
case
TarEntryType
.RegularFile:
504
case
TarEntryType
.V7RegularFile:
514
case
TarEntryType
.GlobalExtendedAttributes:
515
case
TarEntryType
.ExtendedAttributes:
Bundles\BundleService.cs (3)
903
case
TarEntryType
.Directory:
907
case
TarEntryType
.RegularFile:
922
case
TarEntryType
.SymbolicLink:
Utils\ArchiveHelper.cs (3)
97
case
TarEntryType
.Directory:
101
case
TarEntryType
.RegularFile:
116
case
TarEntryType
.SymbolicLink:
Aspire.Cli.Tests (5)
BundleServiceIntegrationTests.cs (5)
555
tar.WriteEntry(new PaxTarEntry(
TarEntryType
.Directory, "aspire-payload/"));
558
tar.WriteEntry(new PaxTarEntry(
TarEntryType
.Directory, $"aspire-payload/{BundleDiscovery.ManagedDirectoryName}/"));
561
var managedEntry = new PaxTarEntry(
TarEntryType
.RegularFile, $"aspire-payload/{BundleDiscovery.ManagedDirectoryName}/{exeName}")
568
tar.WriteEntry(new PaxTarEntry(
TarEntryType
.Directory, $"aspire-payload/{BundleDiscovery.DcpDirectoryName}/"));
573
TarEntryType
.RegularFile,
Microsoft.Build.Tasks.Core (9)
TarDirectory.cs (6)
479
TarEntryType
entryType = (isDirectory, isSymbolicLink, format) switch
481
(true, _, _) =>
TarEntryType
.Directory,
482
(_, true, _) =>
TarEntryType
.SymbolicLink,
483
(_, _, TarEntryFormat.V7) =>
TarEntryType
.V7RegularFile,
484
_ =>
TarEntryType
.RegularFile,
522
private static TarEntry CreateEntry(TarEntryFormat format,
TarEntryType
entryType, string entryName) => format switch
Untar.cs (3)
297
if (tarEntry.EntryType is
TarEntryType
.Directory || Path.GetFileName(destinationPath.FullName).Length == 0)
315
if (tarEntry.EntryType is not (
TarEntryType
.RegularFile or
TarEntryType
.V7RegularFile))
Microsoft.NET.Build.Containers (18)
Layer.cs (4)
111
var entry = new PaxTarEntry(
TarEntryType
.Directory, "Files", entryAttributes)
150
var entry = new PaxTarEntry(
TarEntryType
.Directory, "Hives", entryAttributes)
185
entry = new(
TarEntryType
.RegularFile, containerPath, entryAttributes)
192
entry = new(
TarEntryType
.Directory, containerPath, entryAttributes);
LocalDaemons\ContainerArchive.cs (7)
141
PaxTarEntry configEntry = new(
TarEntryType
.RegularFile, configPath)
175
PaxTarEntry manifestEntry = new(
TarEntryType
.RegularFile, "manifest.json")
190
PaxTarEntry layoutEntry = new(
TarEntryType
.RegularFile, "oci-layout")
206
PaxTarEntry manifestEntry = new(
TarEntryType
.RegularFile, manifestPath)
237
PaxTarEntry indexEntry = new(
TarEntryType
.RegularFile, "index.json")
278
PaxTarEntry manifestListEntry = new(
TarEntryType
.RegularFile, $"{BlobsPath}/{manifestListSha}")
297
PaxTarEntry indexEntry = new(
TarEntryType
.RegularFile, "index.json")
LocalDaemons\DockerCli.cs (7)
370
PaxTarEntry configEntry = new(
TarEntryType
.RegularFile, configPath)
401
PaxTarEntry manifestEntry = new(
TarEntryType
.RegularFile, "manifest.json")
439
PaxTarEntry layoutEntry = new(
TarEntryType
.RegularFile, ociLayoutPath)
457
PaxTarEntry manifestEntry = new(
TarEntryType
.RegularFile, manifestPath)
482
PaxTarEntry indexEntry = new(
TarEntryType
.RegularFile, "index.json")
545
PaxTarEntry indexEntry = new(
TarEntryType
.RegularFile, manifestListPath)
564
PaxTarEntry indexEntry = new(
TarEntryType
.RegularFile, "index.json")
sdk-tasks (1)
ExtractArchiveToDirectory.cs (1)
122
if (tarEntry.EntryType !=
TarEntryType
.Directory)
System.Formats.Tar (327)
System\Formats\Tar\GnuTarEntry.cs (10)
27
/// <para>When creating an instance using the <see cref="GnuTarEntry(
TarEntryType
, string)"/> constructor, only the following entry types are supported:</para>
29
/// <item>In all platforms: <see cref="
TarEntryType
.Directory"/>, <see cref="
TarEntryType
.HardLink"/>, <see cref="
TarEntryType
.SymbolicLink"/>, <see cref="
TarEntryType
.RegularFile"/>.</item>
30
/// <item>In Unix platforms only: <see cref="
TarEntryType
.BlockDevice"/>, <see cref="
TarEntryType
.CharacterDevice"/> and <see cref="
TarEntryType
.Fifo"/>.</item>
37
public GnuTarEntry(
TarEntryType
entryType, string entryName)
100
internal override bool IsDataStreamSetterSupported() => EntryType is
TarEntryType
.RegularFile;
System\Formats\Tar\PaxGlobalExtendedAttributesTarEntry.cs (1)
26
: 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 (20)
26
/// <remarks><para>When creating an instance using the <see cref="PaxTarEntry(
TarEntryType
, string)"/> constructor, only the following entry types are supported:</para>
28
/// <item>In all platforms: <see cref="
TarEntryType
.Directory"/>, <see cref="
TarEntryType
.HardLink"/>, <see cref="
TarEntryType
.SymbolicLink"/>, <see cref="
TarEntryType
.RegularFile"/>.</item>
29
/// <item>In Unix platforms only: <see cref="
TarEntryType
.BlockDevice"/>, <see cref="
TarEntryType
.CharacterDevice"/> and <see cref="
TarEntryType
.Fifo"/>.</item>
31
/// <para>Use the <see cref="PaxTarEntry(
TarEntryType
, string, IEnumerable{KeyValuePair{string, string}})"/> constructor to include extended attributes when creating the entry.</para>
37
public PaxTarEntry(
TarEntryType
entryType, string entryName)
49
/// <remarks><para>When creating an instance using the <see cref="PaxTarEntry(
TarEntryType
, string, IEnumerable{KeyValuePair{string, string}})"/> constructor, only the following entry types are supported:</para>
51
/// <item>In all platforms: <see cref="
TarEntryType
.Directory"/>, <see cref="
TarEntryType
.HardLink"/>, <see cref="
TarEntryType
.SymbolicLink"/>, <see cref="
TarEntryType
.RegularFile"/>.</item>
52
/// <item>In Unix platforms only: <see cref="
TarEntryType
.BlockDevice"/>, <see cref="
TarEntryType
.CharacterDevice"/> and <see cref="
TarEntryType
.Fifo"/>.</item>
66
public PaxTarEntry(
TarEntryType
entryType, string entryName, IEnumerable<KeyValuePair<string, string>> extendedAttributes)
132
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)
86
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;
120
/// <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>
124
/// 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.
127
/// <exception cref="InvalidOperationException">The entry type is not <see cref="
TarEntryType
.HardLink"/> or <see cref="
TarEntryType
.SymbolicLink"/>.</exception>
135
if (_header._typeFlag is not
TarEntryType
.HardLink and not
TarEntryType
.SymbolicLink)
198
/// <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>
199
/// <para>Elevation is required to extract a <see cref="
TarEntryType
.BlockDevice"/> or <see cref="
TarEntryType
.CharacterDevice"/> to disk.</para>
216
if (EntryType is
TarEntryType
.SymbolicLink or
TarEntryType
.HardLink or
TarEntryType
.GlobalExtendedAttributes)
231
/// <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>
232
/// <para>Elevation is required to extract a <see cref="
TarEntryType
.BlockDevice"/> or <see cref="
TarEntryType
.CharacterDevice"/> to disk.</para></remarks>
251
if (EntryType is
TarEntryType
.SymbolicLink or
TarEntryType
.HardLink or
TarEntryType
.GlobalExtendedAttributes)
265
/// <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>
326
if (EntryType ==
TarEntryType
.Directory)
349
if (EntryType ==
TarEntryType
.Directory)
379
if (EntryType is
TarEntryType
.SymbolicLink)
401
else if (EntryType is
TarEntryType
.HardLink)
536
if (EntryType is
TarEntryType
.RegularFile or
TarEntryType
.V7RegularFile or
TarEntryType
.ContiguousFile)
555
if (EntryType is
TarEntryType
.RegularFile or
TarEntryType
.V7RegularFile or
TarEntryType
.ContiguousFile)
568
Debug.Assert(EntryType is not (
TarEntryType
.RegularFile or
TarEntryType
.V7RegularFile or
TarEntryType
.ContiguousFile));
572
case
TarEntryType
.Directory:
573
case
TarEntryType
.DirectoryList:
589
case
TarEntryType
.SymbolicLink:
595
case
TarEntryType
.HardLink:
608
case
TarEntryType
.BlockDevice:
612
case
TarEntryType
.CharacterDevice:
616
case
TarEntryType
.Fifo:
620
case
TarEntryType
.ExtendedAttributes:
621
case
TarEntryType
.GlobalExtendedAttributes:
622
case
TarEntryType
.LongPath:
623
case
TarEntryType
.LongLink:
627
case
TarEntryType
.MultiVolume:
628
case
TarEntryType
.RenamedOrSymlinked:
629
case
TarEntryType
.SparseFile:
630
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 (42)
268
/// <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>
269
/// <para>Elevation is required to extract a <see cref="
TarEntryType
.BlockDevice"/> or <see cref="
TarEntryType
.CharacterDevice"/> to disk.</para></remarks>
288
/// <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>
289
/// <para>Elevation is required to extract a <see cref="
TarEntryType
.BlockDevice"/> or <see cref="
TarEntryType
.CharacterDevice"/> to disk.</para></remarks>
330
/// <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>
331
/// <para>Elevation is required to extract a <see cref="
TarEntryType
.BlockDevice"/> or <see cref="
TarEntryType
.CharacterDevice"/> to disk.</para></remarks>
352
/// <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>
353
/// <para>Elevation is required to extract a <see cref="
TarEntryType
.BlockDevice"/> or <see cref="
TarEntryType
.CharacterDevice"/> to disk.</para></remarks>
396
/// <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>
397
/// <para>Elevation is required to extract a <see cref="
TarEntryType
.BlockDevice"/> or <see cref="
TarEntryType
.CharacterDevice"/> to disk.</para></remarks>
415
/// <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>
416
/// <para>Elevation is required to extract a <see cref="
TarEntryType
.BlockDevice"/> or <see cref="
TarEntryType
.CharacterDevice"/> to disk.</para></remarks>
459
/// <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>
460
/// <para>Elevation is required to extract a <see cref="
TarEntryType
.BlockDevice"/> or <see cref="
TarEntryType
.CharacterDevice"/> to disk.</para></remarks>
480
/// <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>
481
/// <para>Elevation is required to extract a <see cref="
TarEntryType
.BlockDevice"/> or <see cref="
TarEntryType
.CharacterDevice"/> to disk.</para></remarks>
662
if (entry.EntryType is not
TarEntryType
.GlobalExtendedAttributes)
710
if (entry.EntryType is not
TarEntryType
.GlobalExtendedAttributes)
System\Formats\Tar\TarHardLinkMode.cs (1)
14
/// occurrences are written as <see cref="
TarEntryType
.HardLink"/> entries.
System\Formats\Tar\TarHeader.cs (6)
68
internal
TarEntryType
_typeFlag;
110
internal TarHeader(TarEntryFormat format, string name = "", int mode = 0, DateTimeOffset mTime = default,
TarEntryType
typeFlag =
TarEntryType
.RegularFile)
124
internal TarHeader(TarEntryFormat format,
TarEntryType
typeFlag, TarHeader other)
264
Debug.Assert(_typeFlag is
TarEntryType
.SymbolicLink or
TarEntryType
.HardLink);
System\Formats\Tar\TarHeader.Read.cs (38)
175
if (_typeFlag is
TarEntryType
.HardLink or
TarEntryType
.SymbolicLink &&
206
if (_typeFlag is
TarEntryType
.RegularFile or
TarEntryType
.V7RegularFile)
302
case
TarEntryType
.ExtendedAttributes or
TarEntryType
.GlobalExtendedAttributes:
305
case
TarEntryType
.LongLink or
TarEntryType
.LongPath:
308
case
TarEntryType
.BlockDevice:
309
case
TarEntryType
.CharacterDevice:
310
case
TarEntryType
.Directory:
311
case
TarEntryType
.Fifo:
312
case
TarEntryType
.HardLink:
313
case
TarEntryType
.SymbolicLink:
320
case
TarEntryType
.RegularFile:
321
case
TarEntryType
.V7RegularFile: // Treated as regular file
322
case
TarEntryType
.ContiguousFile: // Treated as regular file
323
case
TarEntryType
.DirectoryList: // Contains the list of filesystem entries in the data section
324
case
TarEntryType
.MultiVolume: // Contains portion of a file
325
case
TarEntryType
.RenamedOrSymlinked: // Might contain data
326
case
TarEntryType
.SparseFile: // Contains portion of a file
327
case
TarEntryType
.TapeVolume: // Might contain data
452
typeFlag: (
TarEntryType
)buffer[FieldLocations.TypeFlag])
465
TarEntryType
.ExtendedAttributes or
466
TarEntryType
.GlobalExtendedAttributes => TarEntryFormat.Pax,
468
TarEntryType
.DirectoryList or
469
TarEntryType
.LongLink or
470
TarEntryType
.LongPath or
471
TarEntryType
.MultiVolume or
472
TarEntryType
.RenamedOrSymlinked or
473
TarEntryType
.TapeVolume => TarEntryFormat.Gnu,
476
TarEntryType
.V7RegularFile => TarEntryFormat.V7,
478
TarEntryType
.SparseFile => throw new NotSupportedException(SR.Format(SR.TarEntryTypeNotSupported, header._typeFlag)),
482
_ => (header._typeFlag ==
TarEntryType
.RegularFile) ? TarEntryFormat.Ustar : TarEntryFormat.V7
605
if (_typeFlag is
TarEntryType
.CharacterDevice or
TarEntryType
.BlockDevice)
734
if (_typeFlag ==
TarEntryType
.LongLink)
738
else if (_typeFlag ==
TarEntryType
.LongPath)
System\Formats\Tar\TarHeader.Write.cs (19)
162
TarEntryType
actualEntryType = TarHelpers.GetCorrectTypeFlagForFormat(TarEntryFormat.V7, _typeFlag);
172
TarEntryType
actualEntryType = TarHelpers.GetCorrectTypeFlagForFormat(TarEntryFormat.Ustar, _typeFlag);
199
Debug.Assert(_typeFlag is
TarEntryType
.GlobalExtendedAttributes);
264
Debug.Assert(_typeFlag is not
TarEntryType
.GlobalExtendedAttributes);
296
Debug.Assert(_typeFlag is not
TarEntryType
.GlobalExtendedAttributes);
418
return GetGnuLongMetadataHeader(dataStream,
TarEntryType
.LongLink);
424
return GetGnuLongMetadataHeader(dataStream,
TarEntryType
.LongPath);
428
private static TarHeader GetGnuLongMetadataHeader(MemoryStream dataStream,
TarEntryType
entryType)
430
Debug.Assert(entryType is
TarEntryType
.LongPath or
TarEntryType
.LongLink);
487
_typeFlag = isGea ?
TarEntryType
.GlobalExtendedAttributes :
TarEntryType
.ExtendedAttributes;
611
private int WriteCommonFields(Span<byte> buffer,
TarEntryType
actualEntryType)
614
Debug.Assert(!string.IsNullOrEmpty(_linkName) ^ (_typeFlag is not
TarEntryType
.SymbolicLink and not
TarEntryType
.HardLink));
756
if (_typeFlag is not
TarEntryType
.LongLink and not
TarEntryType
.LongPath)
1135
return _typeFlag is
TarEntryType
.Directory or
TarEntryType
.DirectoryList ?
System\Formats\Tar\TarHelpers.cs (38)
48
internal static int GetDefaultMode(
TarEntryType
type)
49
=> type is
TarEntryType
.Directory or
TarEntryType
.DirectoryList ? (int)DefaultDirectoryMode : (int)DefaultFileMode;
198
internal static
TarEntryType
GetRegularFileEntryTypeForFormat(TarEntryFormat format) => format is TarEntryFormat.V7 ?
TarEntryType
.V7RegularFile :
TarEntryType
.RegularFile;
203
internal static
TarEntryType
GetCorrectTypeFlagForFormat(TarEntryFormat format,
TarEntryType
entryType)
207
if (entryType is
TarEntryType
.RegularFile)
209
return
TarEntryType
.V7RegularFile;
212
else if (entryType is
TarEntryType
.V7RegularFile)
214
return
TarEntryType
.RegularFile;
305
internal static void ThrowIfEntryTypeNotSupported(
TarEntryType
entryType, TarEntryFormat archiveFormat, [CallerArgumentExpression(nameof(entryType))] string? paramName = null)
311
TarEntryType
.Directory or
312
TarEntryType
.HardLink or
313
TarEntryType
.V7RegularFile or
314
TarEntryType
.SymbolicLink)
322
TarEntryType
.BlockDevice or
323
TarEntryType
.CharacterDevice or
324
TarEntryType
.Directory or
325
TarEntryType
.Fifo or
326
TarEntryType
.HardLink or
327
TarEntryType
.RegularFile or
328
TarEntryType
.SymbolicLink)
336
TarEntryType
.BlockDevice or
337
TarEntryType
.CharacterDevice or
338
TarEntryType
.Directory or
339
TarEntryType
.Fifo or
340
TarEntryType
.HardLink or
341
TarEntryType
.RegularFile or
342
TarEntryType
.SymbolicLink)
354
TarEntryType
.BlockDevice or
355
TarEntryType
.CharacterDevice or
356
TarEntryType
.Directory or
357
TarEntryType
.Fifo or
358
TarEntryType
.HardLink or
359
TarEntryType
.RegularFile or
360
TarEntryType
.SymbolicLink)
System\Formats\Tar\TarReader.cs (19)
218
TarEntryFormat.Pax => header._typeFlag is
TarEntryType
.GlobalExtendedAttributes ?
258
if (header._typeFlag is
TarEntryType
.ExtendedAttributes)
268
else if (header._typeFlag is
TarEntryType
.LongLink or
TarEntryType
.LongPath)
295
if (actualHeader._typeFlag is
TarEntryType
.GlobalExtendedAttributes or
296
TarEntryType
.ExtendedAttributes or
297
TarEntryType
.LongLink or
298
TarEntryType
.LongPath)
300
throw new InvalidDataException(SR.Format(SR.TarUnexpectedMetadataEntry, actualHeader._typeFlag,
TarEntryType
.ExtendedAttributes));
333
if ((header._typeFlag is
TarEntryType
.LongLink && secondHeader._typeFlag is
TarEntryType
.LongPath) ||
334
(header._typeFlag is
TarEntryType
.LongPath && secondHeader._typeFlag is
TarEntryType
.LongLink))
344
if (thirdHeader._typeFlag is
TarEntryType
.LongLink or
TarEntryType
.LongPath)
349
if (header._typeFlag is
TarEntryType
.LongLink)
357
else if (header._typeFlag is
TarEntryType
.LongPath)
370
if (header._typeFlag is
TarEntryType
.LongLink)
375
else if (header._typeFlag is
TarEntryType
.LongPath)
System\Formats\Tar\TarWriter.cs (31)
216
/// <item><see cref="
TarEntryType
.Directory"/></item>
217
/// <item><see cref="
TarEntryType
.HardLink"/></item>
218
/// <item><see cref="
TarEntryType
.SymbolicLink"/></item>
219
/// <item><see cref="
TarEntryType
.V7RegularFile"/></item>
225
/// <item><see cref="
TarEntryType
.BlockDevice"/></item>
226
/// <item><see cref="
TarEntryType
.CharacterDevice"/></item>
227
/// <item><see cref="
TarEntryType
.Directory"/></item>
228
/// <item><see cref="
TarEntryType
.Fifo"/></item>
229
/// <item><see cref="
TarEntryType
.HardLink"/></item>
230
/// <item><see cref="
TarEntryType
.RegularFile"/></item>
231
/// <item><see cref="
TarEntryType
.SymbolicLink"/></item>
236
/// <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>
264
/// <item><see cref="
TarEntryType
.Directory"/></item>
265
/// <item><see cref="
TarEntryType
.HardLink"/></item>
266
/// <item><see cref="
TarEntryType
.SymbolicLink"/></item>
267
/// <item><see cref="
TarEntryType
.V7RegularFile"/></item>
273
/// <item><see cref="
TarEntryType
.BlockDevice"/></item>
274
/// <item><see cref="
TarEntryType
.CharacterDevice"/></item>
275
/// <item><see cref="
TarEntryType
.Directory"/></item>
276
/// <item><see cref="
TarEntryType
.Fifo"/></item>
277
/// <item><see cref="
TarEntryType
.HardLink"/></item>
278
/// <item><see cref="
TarEntryType
.RegularFile"/></item>
279
/// <item><see cref="
TarEntryType
.SymbolicLink"/></item>
284
/// <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>
318
if (entry._header._typeFlag is
TarEntryType
.GlobalExtendedAttributes)
353
TarEntryFormat.Pax when entry._header._typeFlag is
TarEntryType
.GlobalExtendedAttributes => entry._header.WriteAsPaxGlobalExtendedAttributesCoreAsync<TAdapter>(_archiveStream, buffer, _nextGlobalExtendedAttributesEntryNumber++, cancellationToken),
407
private static void ValidateEntryLinkName(
TarEntryType
entryType, string? linkName)
409
if (entryType is
TarEntryType
.HardLink or
TarEntryType
.SymbolicLink)
System\Formats\Tar\TarWriter.Unix.cs (14)
43
TarEntryType
entryType;
46
entryType =
TarEntryType
.HardLink;
53
Interop.Sys.FileTypes.S_IFBLK =>
TarEntryType
.BlockDevice,
54
Interop.Sys.FileTypes.S_IFCHR =>
TarEntryType
.CharacterDevice,
55
Interop.Sys.FileTypes.S_IFIFO =>
TarEntryType
.Fifo,
56
Interop.Sys.FileTypes.S_IFLNK =>
TarEntryType
.SymbolicLink,
58
Interop.Sys.FileTypes.S_IFDIR =>
TarEntryType
.Directory,
63
FileSystemInfo info = entryType is
TarEntryType
.Directory ? new DirectoryInfo(fullPath) : new FileInfo(fullPath);
74
if (entryType is
TarEntryType
.BlockDevice or
TarEntryType
.CharacterDevice)
117
if (entry.EntryType ==
TarEntryType
.SymbolicLink)
122
if (entry.EntryType ==
TarEntryType
.HardLink)
128
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;