sftp_client icon indicating copy to clipboard operation
sftp_client copied to clipboard

An Elixir SFTP Client that wraps Erlang's ssh and ssh_sftp.

Results 6 sftp_client issues
Sort by recently updated
recently updated
newest added

When trying to install in Livebook desktop on Mac with the following command: ``` Mix.install( [ {:sftp_client, "~> 1.4"} ], force: true ) ``` The following error is received: ```...

As the behavior of `stream_file/1` may be confusing (see #8), the function should be deprecated. Instead `stream_file!/1` should be used.

removal

Adding two more config options that get passed to the underlying erlang ssh connect: `preferred_algorithms` and `packet_size`

Hello, I have a multitenant system where we pull in data via sftp for processing, everything works very well, with passwords, but with private_keys, I have a probem. I see...

In the [documentation for SFTPClient.Operations.Connect.connect/1](https://github.com/tlux/sftp_client/blob/main/lib/sftp_client/operations/connect.ex#L37-L38), it says that the default `:operation_timeout` is 5 seconds. However, in the [definition of the Config struct](https://github.com/tlux/sftp_client/blob/main/lib/sftp_client/config.ex#L21), the default is `:infinity`. I'm not sure whether...