Clone this repo:
  1. fb0652c Merge pull request #611 from pkg/ISSUE-609-clarify-mkdirall-error-condition by Cassondra Foesch · 7 weeks ago master
  2. 088878b Merge pull request #571 from powellnorma/win-root by Cassondra Foesch · 7 weeks ago
  3. 6be1dd2 review adjustments by powellnorma · 7 weeks ago
  4. 33e8fe8 go.mod: add golang.org/x/sys by powellnorma · 7 weeks ago
  5. 524cb62 Merge branch 'master' into win-root by powellnorma · 7 weeks 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.

CI Status Go Reference

usage and examples

See https://pkg.go.dev/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.