7 references to DirectoryList
System.Formats.Tar (7)
System\Formats\Tar\TarEntry.cs (2)
109/// <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> 432case TarEntryType.DirectoryList:
System\Formats\Tar\TarHeader.Read.cs (3)
208case TarEntryType.DirectoryList: // Contains the list of filesystem entries in the data section 270case TarEntryType.DirectoryList: // Contains the list of filesystem entries in the data section 405TarEntryType.DirectoryList or
System\Formats\Tar\TarHeader.Write.cs (1)
1070return _typeFlag is TarEntryType.Directory or TarEntryType.DirectoryList ?
System\Formats\Tar\TarHelpers.cs (1)
50=> type is TarEntryType.Directory or TarEntryType.DirectoryList ? (int)DefaultDirectoryMode : (int)DefaultFileMode;