文件名称:ftp:Go的FTP客户端软件包
文件大小:24KB
文件格式:ZIP
更新时间:2024-02-24 08:08:53
go ftp ftp-client GoGo
goftp Go的FTP客户端软件包 安装 go get -u github.com/jlaffaye/ftp 文献资料 例 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 ) } 存储文件示例 data := bytes . NewBufferString ( "Hello World" ) err = c . Stor ( "test-file.txt" , data ) if err != nil { pa
【文件预览】:
ftp-master
----go.mod(84B)
----debug.go(360B)
----.github()
--------stale.yml(672B)
--------ISSUE_TEMPLATE()
----client_test.go(5KB)
----go.sum(1KB)
----walker.go(2KB)
----scanner_test.go(642B)
----status_test.go(259B)
----parse.go(7KB)
----.travis.yml(276B)
----LICENSE(761B)
----README.md(1KB)
----walker_test.go(3KB)
----conn_test.go(9KB)
----status.go(5KB)
----parse_test.go(8KB)
----ftp.go(22KB)
----scanner.go(1KB)