FTP client package for Go
Go to file
dependabot[bot] 24605b639e
Bump actions/checkout from 4.1.7 to 4.2.2
Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.7 to 4.2.2.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v4.1.7...v4.2.2)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-10-23 15:47:21 +00:00
.github Bump actions/checkout from 4.1.7 to 4.2.2 2024-10-23 15:47:21 +00:00
client_test.go Add forceListHidden dial option to force the use of 'LIST -a' command (#271) 2022-09-04 14:43:06 -04:00
conn_test.go Fix GetEntry / MLST for some servers - Fixes #321 (#322) 2023-05-12 22:29:37 -04:00
constants_test.go Add tests for EntryType 2022-03-08 18:57:09 -05:00
debug.go Debug directory listings 2021-10-03 18:40:19 +03:00
ftp_test.go Fix PASV address like lftp does (#349) 2023-11-13 14:56:59 -05:00
ftp.go Fix PASV address like lftp does (#349) 2023-11-13 14:56:59 -05:00
go.mod Bump github.com/stretchr/testify from 1.8.4 to 1.9.0 (#365) 2024-06-27 17:44:28 -04:00
go.sum Bump github.com/stretchr/testify from 1.8.4 to 1.9.0 (#365) 2024-06-27 17:44:28 -04:00
LICENSE Update copyright years. 2013-02-17 10:34:01 +01:00
parse_test.go New date formats for non standard dates returned by LIST (#354) 2024-01-11 14:31:46 -05:00
parse.go New date formats for non standard dates returned by LIST (#354) 2024-01-11 14:31:46 -05:00
README.md Add CodeQL and golangci-lint badges 2022-09-07 18:02:26 -04:00
scanner_test.go Fix issues reported by goimports 2021-03-06 19:44:19 -05:00
scanner.go Do not export the scanner type 2017-03-04 13:01:41 +01:00
status.go Add status string for unknown status codes 2020-07-08 08:23:44 +02:00
walker_test.go Fix issues reported by staticcheck 2020-10-21 22:10:46 +02:00
walker.go Add forceListHidden dial option to force the use of 'LIST -a' command (#271) 2022-09-04 14:43:06 -04:00

goftp

Units tests Coverage Status golangci-lint CodeQL Go ReportCard Go Reference

A FTP client package for Go

Install

go get -u github.com/jlaffaye/ftp

Documentation

https://pkg.go.dev/github.com/jlaffaye/ftp

Example

c, err := ftp.Dial("ftp.example.org:21", ftp.DialWithTimeout(5*time.Second))
if err != nil {
    log.Fatal(err)
}

err = c.Login("anonymous", "anonymous")
if err != nil {
    log.Fatal(err)
}

// Do something with the FTP conn

if err := c.Quit(); err != nil {
    log.Fatal(err)
}

Store a file example

data := bytes.NewBufferString("Hello World")
err = c.Stor("test-file.txt", data)
if err != nil {
	panic(err)
}

Read a file example

r, err := c.Retr("test-file.txt")
if err != nil {
	panic(err)
}
defer r.Close()

buf, err := ioutil.ReadAll(r)
println(string(buf))