View Source SFTPClient.Operations.MakeLink (SFTP Client v1.4.8)
A module that provides functions to create symlinks on an SFTP server.
Link to this section Summary
Functions
Creates a symbolic link pointing to target_path
with the name
symlink_path
. Raises when the operation fails.
Creates a symbolic link pointing to target_path
with the name
symlink_path
.
Link to this section Functions
@spec make_link!(SFTPClient.Conn.t(), Path.t(), Path.t()) :: :ok | no_return()
Creates a symbolic link pointing to target_path
with the name
symlink_path
. Raises when the operation fails.
@spec make_link(SFTPClient.Conn.t(), Path.t(), Path.t()) :: :ok | {:error, SFTPClient.error()}
Creates a symbolic link pointing to target_path
with the name
symlink_path
.