SFTP Client v1.0.0 SFTPClient View Source
Link to this section Summary
Types
File access modes that can be used when opening files directly from the remote server.
Link to this section Types
Link to this type
access_mode()
View Source
access_mode()
View Source
access_mode() :: :read | :write | :creat | :trunc | :append | :binary
access_mode() :: :read | :write | :creat | :trunc | :append | :binary
File access modes that can be used when opening files directly from the remote server.
Link to this section Functions
Link to this function
close_handle(handle) View Source
Link to this function
close_handle!(handle) View Source
Link to this function
connect(config_or_opts) View Source
Link to this function
connect!(config_or_opts) View Source
Link to this function
delete_dir(conn, path) View Source
Link to this function
delete_dir!(conn, path) View Source
Link to this function
delete_file(conn, path) View Source
Link to this function
delete_file!(conn, path) View Source
Link to this function
disconnect(conn) View Source
Link to this function
download_file(conn, remote_path, local_path) View Source
Link to this function
download_file!(conn, remote_path, local_path) View Source
Link to this function
file_info(conn, path) View Source
Link to this function
file_info!(conn, path) View Source
Link to this function
link_info(conn, path) View Source
Link to this function
link_info!(conn, path) View Source
Link to this function
list_dir(conn, path) View Source
Link to this function
list_dir!(conn, path) View Source
Link to this function
make_dir(conn, path) View Source
Link to this function
make_dir!(conn, path) View Source
Link to this function
make_symlink(conn, symlink_path, target_path) View Source
Link to this function
make_symlink!(conn, symlink_path, target_path) View Source
Link to this function
open_dir(conn, path) View Source
Link to this function
open_dir!(conn, path) View Source
Link to this function
open_file(conn, path, modes) View Source
Link to this function
open_file!(conn, path, modes) View Source
Link to this function
read_file(conn, path) View Source
Link to this function
read_file!(conn, path) View Source
Link to this function
read_file_chunk(handle, length) View Source
Link to this function
read_file_chunk!(handle, length) View Source
Link to this function
read_link(conn, path) View Source
Link to this function
read_link!(conn, path) View Source
Link to this function
rename(conn, old_name, new_name) View Source
Link to this function
rename!(conn, old_name, new_name) View Source
Link to this function
stream_file(conn, path) View Source
Link to this function
stream_file(conn, path, chunk_size) View Source
Link to this function
stream_file!(conn, path) View Source
Link to this function
stream_file!(conn, path, chunk_size) View Source
Link to this function
write_file(conn, path, data) View Source
Link to this function
write_file!(conn, path, data) View Source
Link to this function
write_file_chunk(handle, data) View Source
See SFTPClient.Operations.WriteFileChunk.write_file_chunk/2.
Link to this function
write_file_chunk!(handle, data) View Source
See SFTPClient.Operations.WriteFileChunk.write_file_chunk!/2.