|
@@ -3,6 +3,7 @@
|
|
|
[](https://travis-ci.org/jlaffaye/ftp)
|
|
[](https://travis-ci.org/jlaffaye/ftp)
|
|
|
[](https://coveralls.io/github/jlaffaye/ftp?branch=master)
|
|
[](https://coveralls.io/github/jlaffaye/ftp?branch=master)
|
|
|
[](http://goreportcard.com/report/jlaffaye/ftp)
|
|
[](http://goreportcard.com/report/jlaffaye/ftp)
|
|
|
|
|
+[](http://godoc.org/github.com/jlaffaye/ftp)
|
|
|
|
|
|
|
|
A FTP client package for Go
|
|
A FTP client package for Go
|
|
|
|
|
|
|
@@ -12,6 +13,22 @@ A FTP client package for Go
|
|
|
go get -u github.com/jlaffaye/ftp
|
|
go get -u github.com/jlaffaye/ftp
|
|
|
```
|
|
```
|
|
|
|
|
|
|
|
-## Documentation ##
|
|
|
|
|
|
|
+## Example ##
|
|
|
|
|
|
|
|
-http://godoc.org/github.com/jlaffaye/ftp
|
|
|
|
|
|
|
+```go
|
|
|
|
|
+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)
|
|
|
|
|
+}
|
|
|
|
|
+```
|