PATH_SYMLINK
WASI Preview1 function path_symlink
Definition:
;;; Create a symbolic link.
;;; Note: This is similar to `symlinkat` in POSIX.
(@interface func (export "path_symlink")
;;; The contents of the symbolic link.
(param $old_path string)
(param $fd $fd)
;;; The destination path at which to create the symbolic link.
(param $new_path string)
(result $error (expected (error $errno)))
)
Content copied to clipboard