Nav apraksta

Julien Laffaye 6841a2daa0 stale bot: ignore accepted issues 6 gadi atpakaļ
.github 6841a2daa0 stale bot: ignore accepted issues 6 gadi atpakaļ
.travis.yml dfb8646068 Fix get of golint 6 gadi atpakaļ
LICENSE 3a7f65cd20 Update copyright years. 13 gadi atpakaļ
README.md 9bf9e0098a Improve readme (#154) 6 gadi atpakaļ
client_test.go 04b1878733 Add DialWithOptions 6 gadi atpakaļ
conn_test.go e6de3d35bf Replace DialWithOptions with Dial 6 gadi atpakaļ
debug.go 8b7b512afb Add DialWithDebugOutput to log commands. 6 gadi atpakaļ
ftp.go 7cd8b0bcf3 Fix spelling errors 6 gadi atpakaļ
go.mod c037483193 Create Go module. 6 gadi atpakaļ
go.sum c037483193 Create Go module. 6 gadi atpakaļ
parse.go c1312a7102 Correctly parse symlink (#152) 6 gadi atpakaļ
parse_test.go c1312a7102 Correctly parse symlink (#152) 6 gadi atpakaļ
scanner.go 602886c6b8 Do not export the scanner type 9 gadi atpakaļ
scanner_test.go 602886c6b8 Do not export the scanner type 9 gadi atpakaļ
status.go 72f5c01749 StatusText returns a text for the FTP status code 7 gadi atpakaļ
status_test.go 8019e67744 Add tests for StatusText 7 gadi atpakaļ

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

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