IReadOnlyFileSystem.

InputPaths Property

Summary

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".
Assembly
Wyam.Common.dll
Namespace
Wyam.Common.IO
Containing Type
IReadOnlyFileSystem

Syntax

IReadOnlyList<DirectoryPath> InputPaths { get; }

Value

Type Description
IReadOnlyList<DirectoryPath> The input paths.
GitHub