Function renameAbsoluteW [src]

Same as renameAbsolute except the path parameters are WTF-16 and target OS is assumed Windows.

Prototype

pub fn renameAbsoluteW(old_path: [*:0]const u16, new_path: [*:0]const u16) !void

Parameters

old_path: [*:0]const u16new_path: [*:0]const u16

Source

pub fn renameAbsoluteW(old_path: [*:0]const u16, new_path: [*:0]const u16) !void { assert(path.isAbsoluteWindowsW(old_path)); assert(path.isAbsoluteWindowsW(new_path)); return posix.renameW(old_path, new_path); }