17 references to V7RegularFile
System.Formats.Tar (17)
System\Formats\Tar\TarEntry.cs (5)
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> 244/// <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> 395if (EntryType is TarEntryType.RegularFile or TarEntryType.V7RegularFile or TarEntryType.ContiguousFile) 414if (EntryType is TarEntryType.RegularFile or TarEntryType.V7RegularFile or TarEntryType.ContiguousFile) 427Debug.Assert(EntryType is not TarEntryType.RegularFile or TarEntryType.V7RegularFile or TarEntryType.ContiguousFile);
System\Formats\Tar\TarHeader.Read.cs (3)
206case TarEntryType.V7RegularFile: // Treated as regular file 268case TarEntryType.V7RegularFile: // Treated as regular file 413TarEntryType.V7RegularFile => TarEntryFormat.V7,
System\Formats\Tar\TarHelpers.cs (3)
207return TarEntryType.V7RegularFile; 210else if (entryType is TarEntryType.V7RegularFile) 318TarEntryType.V7RegularFile or
System\Formats\Tar\TarWriter.cs (2)
199/// <item><see cref="TarEntryType.V7RegularFile"/></item> 243/// <item><see cref="TarEntryType.V7RegularFile"/></item>
System\Formats\Tar\TarWriter.Unix.cs (2)
36Interop.Sys.FileTypes.S_IFREG => Format is TarEntryFormat.V7 ? TarEntryType.V7RegularFile : TarEntryType.RegularFile, 97if (entry.EntryType is TarEntryType.RegularFile or TarEntryType.V7RegularFile)
System\Formats\Tar\V7TarEntry.cs (2)
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> 44internal override bool IsDataStreamSetterSupported() => EntryType == TarEntryType.V7RegularFile;