29 references to Directory
aspire (2)
Bundles\BundleService.cs (1)
269
case TarEntryType.
Directory
:
Utils\ArchiveHelper.cs (1)
97
case TarEntryType.
Directory
:
Microsoft.NET.Build.Containers (3)
Layer.cs (3)
101
var entry = new PaxTarEntry(TarEntryType.
Directory
, "Files", entryAttributes);
135
var entry = new PaxTarEntry(TarEntryType.
Directory
, "Hives", entryAttributes);
168
entry = new(TarEntryType.
Directory
, containerPath, entryAttributes);
sdk-tasks (1)
ExtractArchiveToDirectory.cs (1)
122
if (tarEntry.EntryType != TarEntryType.
Directory
)
System.Formats.Tar (23)
System\Formats\Tar\GnuTarEntry.cs (1)
29
/// <item>In all platforms: <see cref="TarEntryType.
Directory
"/>, <see cref="TarEntryType.HardLink"/>, <see cref="TarEntryType.SymbolicLink"/>, <see cref="TarEntryType.RegularFile"/>.</item>
System\Formats\Tar\PaxTarEntry.cs (2)
28
/// <item>In all platforms: <see cref="TarEntryType.
Directory
"/>, <see cref="TarEntryType.HardLink"/>, <see cref="TarEntryType.SymbolicLink"/>, <see cref="TarEntryType.RegularFile"/>.</item>
51
/// <item>In all platforms: <see cref="TarEntryType.
Directory
"/>, <see cref="TarEntryType.HardLink"/>, <see cref="TarEntryType.SymbolicLink"/>, <see cref="TarEntryType.RegularFile"/>.</item>
System\Formats\Tar\TarEntry.cs (3)
324
if (EntryType == TarEntryType.
Directory
)
347
if (EntryType == TarEntryType.
Directory
)
470
case TarEntryType.
Directory
:
System\Formats\Tar\TarEntryType.cs (1)
62
/// <para>This entry type is specific to the <see cref="TarEntryFormat.Gnu"/> format, and is treated as a <see cref="
Directory
"/> entry type that contains a data section.</para>
System\Formats\Tar\TarHeader.Read.cs (2)
249
case TarEntryType.
Directory
:
325
case TarEntryType.
Directory
:
System\Formats\Tar\TarHeader.Write.cs (1)
1171
return _typeFlag is TarEntryType.
Directory
or TarEntryType.DirectoryList ?
System\Formats\Tar\TarHelpers.cs (5)
49
=> type is TarEntryType.
Directory
or TarEntryType.DirectoryList ? (int)DefaultDirectoryMode : (int)DefaultFileMode;
322
TarEntryType.
Directory
or
335
TarEntryType.
Directory
or
349
TarEntryType.
Directory
or
367
TarEntryType.
Directory
or
System\Formats\Tar\TarWriter.cs (4)
230
/// <item><see cref="TarEntryType.
Directory
"/></item>
241
/// <item><see cref="TarEntryType.
Directory
"/></item>
278
/// <item><see cref="TarEntryType.
Directory
"/></item>
289
/// <item><see cref="TarEntryType.
Directory
"/></item>
System\Formats\Tar\TarWriter.Unix.cs (2)
58
Interop.Sys.FileTypes.S_IFDIR => TarEntryType.
Directory
,
63
FileSystemInfo info = entryType is TarEntryType.
Directory
? new DirectoryInfo(fullPath) : new FileInfo(fullPath);
System\Formats\Tar\UstarTarEntry.cs (1)
24
/// <item>In all platforms: <see cref="TarEntryType.
Directory
"/>, <see cref="TarEntryType.HardLink"/>, <see cref="TarEntryType.SymbolicLink"/>, <see cref="TarEntryType.RegularFile"/>.</item>
System\Formats\Tar\V7TarEntry.cs (1)
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>