View Source SFTPClient.Operations.LinkInfo (SFTP Client v2.1.0)
A module that provides functions to retrieve information on symbolic links from an SFTP server.
Summary
Functions
@spec link_info(SFTPClient.Conn.t(), Path.t()) :: {:ok, File.Stat.t()} | {:error, SFTPClient.error()}
Returns a File.Stat
struct from the remote symbolic link object specified by
path.
@spec link_info!(SFTPClient.Conn.t(), Path.t()) :: File.Stat.t() | no_return()
Returns a File.Stat
struct from the remote symbolic link object specified by
path. Raises when the operation fails.