Path.this

Constructor that allows to build path from segments

  1. this(string path)
  2. this(string[] segments)
    struct Path
    @safe pure nothrow
    this
    (
    in string[] segments...
    )

Parameters

segments string[]

array of segments to build path from

Examples

import dshould;

version(Posix) {
    Path("foo", "moo", "boo").toString.should.equal("foo/moo/boo");
    Path("/foo/moo", "boo").toString.should.equal("/foo/moo/boo");
}

Meta