Function copyFileAbsolute [src]
Same as Dir.copyFile, except asserts that both source_path and dest_path
are absolute. See Dir.copyFile for a function that operates on both
absolute and relative paths.
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 copyFileAbsolute( source_path: []const u8, dest_path: []const u8, args: Dir.CopyFileOptions, ) !void
Parameters
source_path: []const u8
dest_path: []const u8
args: Dir.CopyFileOptions
Source
pub fn copyFileAbsolute(
source_path: []const u8,
dest_path: []const u8,
args: Dir.CopyFileOptions,
) !void {
assert(path.isAbsolute(source_path));
assert(path.isAbsolute(dest_path));
const my_cwd = cwd();
return Dir.copyFile(my_cwd, source_path, my_cwd, dest_path, args);
}