Sin descripción

Julien Laffaye 8b7b512afb Add DialWithDebugOutput to log commands. hace 6 años
.travis.yml 55546487cf Use mock for all tests hace 6 años
LICENSE 3a7f65cd20 Update copyright years. hace 13 años
README.md 75b9ebed79 Fix errors in example code hace 6 años
client_test.go 04b1878733 Add DialWithOptions hace 6 años
conn_test.go 04b1878733 Add DialWithOptions hace 6 años
debug.go 8b7b512afb Add DialWithDebugOutput to log commands. hace 6 años
ftp.go 8b7b512afb Add DialWithDebugOutput to log commands. hace 6 años
parse.go b218223d02 Use error values in tests hace 7 años
parse_test.go b218223d02 Use error values in tests hace 7 años
scanner.go 602886c6b8 Do not export the scanner type hace 9 años
scanner_test.go 602886c6b8 Do not export the scanner type hace 9 años
status.go 72f5c01749 StatusText returns a text for the FTP status code hace 7 años
status_test.go 8019e67744 Add tests for StatusText hace 7 años

README.md

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: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)
}