Function rename [src]
Same as Dir.rename, except new_sub_path is relative to new_dir
Prototype
pub fn rename(old_dir: Dir, old_sub_path: []const u8, new_dir: Dir, new_sub_path: []const u8) !void
Parameters
old_dir: Dir
old_sub_path: []const u8
new_dir: Dir
new_sub_path: []const u8
Source
pub fn rename(old_dir: Dir, old_sub_path: []const u8, new_dir: Dir, new_sub_path: []const u8) !void {
return posix.renameat(old_dir.fd, old_sub_path, new_dir.fd, new_sub_path);
}