Logan Freijo e2d95d05cb
Fix for proxies in passive mode
Fixed the host address such that the actual host ip is stored and not the result of the proxy dialer (if used)
2024-04-12 11:29:22 -04:00
2022-03-08 18:57:09 -05:00
2021-10-03 18:40:19 +03:00
2024-04-12 11:29:22 -04:00
2013-02-17 10:34:01 +01:00
2022-09-07 18:02:26 -04:00
2017-03-04 13:01:41 +01: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))
Description
FTP client package for Go
Readme 772 KiB
Languages
Go 100%