InputPaths Property
Gets the input paths. These are searched in reverse order for files and directories. For example, given input paths "A", "B", and "C" in that order, "C" will be checked for a requested file or directory first, and then if it doesn't exist in "C", "B" will be checked, and then "A". If none of the input paths contain the requested file or directory, the last input path (in this case, "C") will be used as the location of the requested non-existent file or directory. If you attempt to create it at this point, it will be created under path "C".
Namespace
Statiq.Common
Containing Type
IReadOnlyFileSystem
Property Type
IReadOnlyList<NormalizedPath>

Syntax

IReadOnlyList<NormalizedPath> InputPaths { get; }

Value

Type Description
IReadOnlyList<NormalizedPath> The input paths.