FilePath

Constructors

this
this(string str, bool normalize)
Undocumented in source.

Alias This

path

Members

Variables

path
Path path;
Undocumented in source.

Examples

assert(FilePath("/usr/bin/") == FilePath("/usr/bin/"));
assert(FilePath("/usr/bin/") == Path("/usr/bin/"));
assert(FilePath("foo") == Path("foo"));
assert(FilePath("foo", false).str == "foo");
assert(FilePath("foo", true).str == "foo");
assert(Path("/etc/", false).str == "/etc/");
assert(Path("/etc/", true).str == "/etc");
assert(Path("foo", true).str == "foo");

Meta