Function symLinkWasi [src]
WASI-only. Same as symLink except targeting WASI.
Prototype
pub fn symLinkWasi( self: Dir, target_path: []const u8, sym_link_path: []const u8, _: SymLinkFlags, ) !void Parameters
self: Dirtarget_path: []const u8sym_link_path: []const u8_: SymLinkFlags Source
pub fn symLinkWasi(
self: Dir,
target_path: []const u8,
sym_link_path: []const u8,
_: SymLinkFlags,
) !void {
return posix.symlinkat(target_path, self.fd, sym_link_path);
}