Same as copyFile, except asserts that both source_path and dest_path
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.
pub fn copyFileAbsolute(
source_path: []const u8,
dest_path: []const u8,
io: Io,
options: CopyFileOptions,
) !void
pub fn copyFileAbsolute(
source_path: []const u8,
dest_path: []const u8,
io: Io,
options: CopyFileOptions,
) !void {
assert(path.isAbsolute(source_path));
assert(path.isAbsolute(dest_path));
const my_cwd = cwd();
return copyFile(my_cwd, source_path, my_cwd, dest_path, io, options);
}