SFTP Client v1.0.0 SFTPClient.Operations.MakeSymlink View Source
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
Link to this function
make_symlink(conn, symlink_path, target_path)
View Source
make_symlink(conn, symlink_path, target_path)
View Source
make_symlink(SFTPClient.Conn.t(), String.t(), String.t()) ::
:ok | {:error, any()}
make_symlink(SFTPClient.Conn.t(), String.t(), String.t()) :: :ok | {:error, any()}
Creates a symbolic link pointing to target_path with the name
symlink_path.
Link to this function
make_symlink!(conn, symlink_path, target_path)
View Source
make_symlink!(conn, symlink_path, target_path)
View Source
make_symlink!(SFTPClient.Conn.t(), String.t(), String.t()) :: :ok | no_return()
make_symlink!(SFTPClient.Conn.t(), String.t(), String.t()) :: :ok | no_return()
Creates a symbolic link pointing to target_path with the name
symlink_path. Raises when the operation fails.