SFTPClient.Operations.MakeLink (SFTP Client v1.4.3) View Source
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
.
Creates a symbolic link pointing to target_path
with the name
symlink_path
. Raises when the operation fails.
Link to this section Functions
Specs
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
.
Specs
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.