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: Dir
target_path: []const u8
sym_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);
}