Clone this repo:
  1. 19d66c2 change request.handle() to request.callHandler() by John Eikenberry · 7 years ago main master
  2. 06477ca minor fix to doc comment by John Eikenberry · 7 years ago
  3. 6eeffbb don't use read locks when making a change by John Eikenberry · 7 years ago
  4. db5d9a7 Merge pull request #197 from mjgarton/master by John Eikenberry · 7 years ago
  5. 4c02ab5 Merge branch 'master' into master by John Eikenberry · 7 years ago

sftp

The sftp package provides support for file system operations on remote ssh servers using the SFTP subsystem. It also implements an SFTP server for serving files from the filesystem.

UNIX Build Status GoDoc

usage and examples

See godoc.org/github.com/pkg/sftp for examples and usage.

The basic operation of the package mirrors the facilities of the os package.

The Walker interface for directory traversal is heavily inspired by Keith Rarick's fs package.

roadmap

  • There is way too much duplication in the Client methods. If there was an unmarshal(interface{}) method this would reduce a heap of the duplication.

contributing

We welcome pull requests, bug fixes and issue reports.

Before proposing a large change, first please discuss your change by raising an issue.

For API/code bugs, please include a small, self contained code example to reproduce the issue. For pull requests, remember test coverage.

We try to handle issues and pull requests with a 0 open philosophy. That means we will try to address the submission as soon as possible and will work toward a resolution. If progress can no longer be made (eg. unreproducible bug) or stops (eg. unresponsive submitter), we will close the bug.

Thanks.