SFTP Client v1.0.0 SFTPClient.Operations.DownloadFile View Source
Link to this section Summary
Functions
Downloads a file from the remote path and stores it in the given local path. When the local path is a directory, the file name of the local file is inferred from the remote path.
Downloads a file from the remote path and stores it in the given local path. When the local path is a directory, the file name of the local file is inferred from the remote path. Raises when the operation fails.
Link to this section Functions
download_file(conn, remote_path, local_path)
View Source
download_file(SFTPClient.Conn.t(), String.t(), String.t()) ::
:ok | {:error, any()}
download_file(SFTPClient.Conn.t(), String.t(), String.t()) :: :ok | {:error, any()}
Downloads a file from the remote path and stores it in the given local path. When the local path is a directory, the file name of the local file is inferred from the remote path.
download_file!(conn, remote_path, local_path)
View Source
download_file!(SFTPClient.Conn.t(), String.t(), String.t()) :: :ok | no_return()
download_file!(SFTPClient.Conn.t(), String.t(), String.t()) :: :ok | no_return()
Downloads a file from the remote path and stores it in the given local path. When the local path is a directory, the file name of the local file is inferred from the remote path. Raises when the operation fails.