We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sometimes you want to upload file from the memory, rather than reading from your disk. This should be an easy implementation I can work on
The text was updated successfully, but these errors were encountered:
You can:
sf, err := client.NewSftp() // handle err defer sf.Close() remote, err := sf.Create("/path/to/remote") // handle err defer remote.Close() //io.Copy(remote, Reader from memory)
Sorry, something went wrong.
Yes, just wanted to have this exposed in the api
No branches or pull requests
Sometimes you want to upload file from the memory, rather than reading from your disk.
This should be an easy implementation I can work on
The text was updated successfully, but these errors were encountered: