Changes the current working directory to the given path. Corresponds to "chdir" in libc.
This modifies global process state and can have surprising effects in multithreaded applications. Most applications and especially libraries should not call this function as a general rule, however it can have use cases in, for example, implementing a shell, or child process execution.
Calling this function makes code less portable and less reusable.
pub fn setCurrentPath(io: Io, path: []const u8) !void
pub fn setCurrentPath(io: Io, path: []const u8) !void {
return io.vtable.processSetCurrentPath(io.userdata, path);
}