View Source SFTPClient.Operations.UploadFile (SFTP Client v2.0.1)

A module that provides functions to upload files to an SFTP server.

Summary

Functions

Uploads a file from the file system to the server.

Uploads a file from the file system to the server. Raises when the operation fails.

Functions

Link to this function

upload_file(conn, local_path, remote_path)

View Source
@spec upload_file(SFTPClient.Conn.t(), Path.t(), Path.t()) ::
  {:ok, Path.t()} | {:error, SFTPClient.error()}

Uploads a file from the file system to the server.

Link to this function

upload_file!(conn, local_path, remote_path)

View Source
@spec upload_file!(SFTPClient.Conn.t(), Path.t(), Path.t()) :: Path.t() | no_return()

Uploads a file from the file system to the server. Raises when the operation fails.