6 references to DirectoryList
System.Formats.Tar (6)
System\Formats\Tar\TarEntry.cs (2)
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>
473
case TarEntryType.
DirectoryList
:
System\Formats\Tar\TarHeader.Read.cs (2)
247
case TarEntryType.
DirectoryList
: // Contains the list of filesystem entries in the data section
387
TarEntryType.
DirectoryList
or
System\Formats\Tar\TarHeader.Write.cs (1)
957
return _typeFlag is TarEntryType.Directory or TarEntryType.
DirectoryList
?
System\Formats\Tar\TarHelpers.cs (1)
49
=> type is TarEntryType.Directory or TarEntryType.
DirectoryList
? (int)DefaultDirectoryMode : (int)DefaultFileMode;