Create a new directory, based on an absolute path.
Asserts that the path is absolute. See createDir for a function that
operates on both absolute and relative paths.
On Windows, absolute_path should be encoded as WTF-8.
On WASI, absolute_path should be encoded as valid UTF-8.
On other platforms, absolute_path is an opaque sequence of bytes with no particular encoding.
pub fn createDirAbsolute(io: Io, absolute_path: []const u8, permissions: Permissions) CreateDirError!void
pub fn createDirAbsolute(io: Io, absolute_path: []const u8, permissions: Permissions) CreateDirError!void {
assert(path.isAbsolute(absolute_path));
return createDir(.cwd(), io, absolute_path, permissions);
}