23 references to Directory
System.Formats.Tar (23)
System\Formats\Tar\GnuTarEntry.cs (1)
25
/// <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)
30
/// <item>In all platforms: <see cref="TarEntryType.
Directory
"/>, <see cref="TarEntryType.HardLink"/>, <see cref="TarEntryType.SymbolicLink"/>, <see cref="TarEntryType.RegularFile"/>.</item>
69
/// <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)
307
if (EntryType == TarEntryType.
Directory
)
330
if (EntryType == TarEntryType.
Directory
)
446
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)
197
case TarEntryType.
Directory
:
259
case TarEntryType.
Directory
:
System\Formats\Tar\TarHeader.Write.cs (1)
1159
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;
338
TarEntryType.
Directory
or
351
TarEntryType.
Directory
or
365
TarEntryType.
Directory
or
383
TarEntryType.
Directory
or
System\Formats\Tar\TarWriter.cs (4)
196
/// <item><see cref="TarEntryType.
Directory
"/></item>
207
/// <item><see cref="TarEntryType.
Directory
"/></item>
240
/// <item><see cref="TarEntryType.
Directory
"/></item>
251
/// <item><see cref="TarEntryType.
Directory
"/></item>
System\Formats\Tar\TarWriter.Unix.cs (2)
37
Interop.Sys.FileTypes.S_IFDIR => TarEntryType.
Directory
,
41
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>