Function renameAbsolute [src]
Same as Dir.rename except the paths are absolute.
On Windows, both paths should be encoded as WTF-8.
On WASI, both paths should be encoded as valid UTF-8.
On other platforms, both paths are an opaque sequence of bytes with no particular encoding.
Prototype
pub fn renameAbsolute(old_path: []const u8, new_path: []const u8) !void
Parameters
old_path: []const u8
new_path: []const u8
Source
pub fn renameAbsolute(old_path: []const u8, new_path: []const u8) !void {
assert(path.isAbsolute(old_path));
assert(path.isAbsolute(new_path));
return posix.rename(old_path, new_path);
}