Summary
This namespace contain types related
to file system paths.
Class Types
Class | Summary |
---|---|
Convertable |
Represents a DirectoryPath that can be easily converted.
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.
|