SFTP Client v1.0.0 SFTPClient.Operations.ReadLink View Source
Link to this section Summary
Functions
Reads the link target from the symbolic link specified by path.
Reads the link target from the symbolic link specified by path. Raises when the operation fails.
Link to this section Functions
Link to this function
read_link(conn, path)
View Source
read_link(conn, path)
View Source
read_link(SFTPClient.Conn.t(), String.t()) ::
{:ok, String.t()} | {:error, any()}
read_link(SFTPClient.Conn.t(), String.t()) :: {:ok, String.t()} | {:error, any()}
Reads the link target from the symbolic link specified by path.
Link to this function
read_link!(conn, path)
View Source
read_link!(conn, path)
View Source
read_link!(SFTPClient.Conn.t(), String.t()) :: String.t() | no_return()
read_link!(SFTPClient.Conn.t(), String.t()) :: String.t() | no_return()
Reads the link target from the symbolic link specified by path. Raises when the operation fails.