dsgdhtr_43654 2016-05-31 09:01 采纳率: 100%
浏览 222
已采纳

通过FTP上传golang并同时获得FTP进度

I've used http://github.com/dutchcoders/goftp to send a file via FTP. It works normally but when I want to upload a file and get that file info (at the same time) It doesn't work!

fileName := "sth"
var err error
var ftp *goftp.FTP

if ftp, err = goftp.Connect("serverip:port"); err != nil {
    fmt.Println(err)
}

defer ftp.Close()

config := tls.Config{
    InsecureSkipVerify: true,
    ClientAuth:         tls.RequestClientCert,
}

if err = ftp.AuthTLS(config); err != nil {
    //      log.Println("1", err)
}

if err = ftp.Login("userName", "pass"); err != nil {
    log.Println("2", err)
}
//
if err = ftp.Cwd("/home/myDir/"); err != nil {
    log.Println("3", err)
}

var file *os.File
if file, err = os.Open(fileName); err != nil {
    log.Println("6", err)
}
defer file.Close()

fmt.Println("start")

go func() {
    fmt.Println("first")
    nmp := ftp.Stor(fileName, file)
    if nmp != nil {
        log.Println("7", err)
    } else {
        fmt.Println("first is runung")

    }
}()

go func() {
    fmt.Println("second")
    for {
        files, nms := ftp.List(fileName)
        if nms == nil {
            fmt.Println(files)
        }
        time.Sleep(1 * time.Second)
    }
}()

fmt.Println("end")

var mnmn string
fmt.Scan(&mnmn)

ftp.Stor func won't run and my code returns below outputs:

start
end
first
second
2016/05/31 13:21:38 7 <nil>
[]
[]
  • 写回答

1条回答 默认 最新

  • dreamer1231 2016-05-31 11:42
    关注

    Currently, both the goroutine have same ftp instance (var ftp *goftp.FTP ) which are blocking each other as they have race condition. And your result is unpredictable. Sometime, it gives correct result when first execute properly. Or when it waits for second and then runs completely. Or when first doesn't execute. Otherwise, both the go routine are blocking each other. Solutons:

    • You take two different instances of ftp to give different connections to goroutine

      var ftp,ftp1 *goftp.FTP
      

    Like here Play Golang Or

    • Have *goftp stor first in main go routine. Then start other go routine. But it will defeat the purpose of second go routine.
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥170 如图所示配置eNSP
  • ¥20 docker里部署springboot项目,访问不到扬声器
  • ¥15 netty整合springboot之后自动重连失效
  • ¥15 悬赏!微信开发者工具报错,求帮改
  • ¥20 wireshark抓不到vlan
  • ¥20 关于#stm32#的问题:需要指导自动酸碱滴定仪的原理图程序代码及仿真
  • ¥20 设计一款异域新娘的视频相亲软件需要哪些技术支持
  • ¥15 stata安慰剂检验作图但是真实值不出现在图上
  • ¥15 c程序不知道为什么得不到结果
  • ¥15 键盘指令混乱情况下的启动盘系统重装