Cake.Common.IO.Paths Namespace

Summary

This namespace contain types related to file system paths.

Class Types

Class Summary
ConvertableDirectoryPath Represents a DirectoryPath that can be easily converted. To get the underlying : ConvertableDirectoryPath convertable = Directory("./root"); DirectoryPath path = (DirectoryPath)convertable; To combine two directories: ConvertableDirectoryPath path = Directory("./root") + Directory("other"); To combine a directory with a file: ConvertableFilePath path = Directory("./root") + File("other.txt");
ConvertableFilePath Represents a FilePath that can be easily converted.