Skip to content
/ ftp Public
forked from jlaffaye/ftp

FTP client package for Go

License

Notifications You must be signed in to change notification settings

ZopNow/ftp

 
 

Repository files navigation

goftp

Build Status Coverage Status Go ReportCard godoc.org

A FTP client package for Go

Install

go get -u github.com/jlaffaye/ftp

Example

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

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

// Do something with the FTP conn

if err := c.Close(); err != nil {
    t.Fatal(err)
}

Releases

No releases published

Packages

No packages published

Languages

  • Go 100.0%