Documentation

Path::Join

Function

string Path::Join(const string&in a, const string&in b)

Combines two paths into one. This automatically glues the paths with forward slashes where needed. For example, passing hello and world will return hello/world, but so will passing hello/ and world. You should not combine multiple absolute paths using this function.

Returns string