Function makeDirAbsoluteW [src]
Same as makeDirAbsolute except the parameter is a null-terminated WTF-16 LE-encoded string.
Prototype
pub fn makeDirAbsoluteW(absolute_path_w: [*:0]const u16) !void
Parameters
absolute_path_w: [*:0]const u16
Source
pub fn makeDirAbsoluteW(absolute_path_w: [*:0]const u16) !void {
assert(path.isAbsoluteWindowsW(absolute_path_w));
return posix.mkdirW(mem.span(absolute_path_w), Dir.default_mode);
}