chdir
fn
void chdir(R)(R pathname) if (isSomeFiniteCharInputRange!R && !isConvertibleToString!R)Change directory to pathname. Equivalent to cd on Windows and POSIX.
Parameters
pathname | the directory to step into |
Throws
FileException on error.
fn
void chdir(R)(auto ref R pathname) if (isConvertibleToString!R)ditto