Path::join
Append component to this path.
component
Source Codepublic method join(this: Path, component: String): Path { let p = if this.p.ends_with("/") { this.p ^ component } else { (this.p ^ "/") ^ component } Path{ p: p } }
public method join(this: Path, component: String): Path { let p = if this.p.ends_with("/") { this.p ^ component } else { (this.p ^ "/") ^ component } Path{ p: p } }