-
Notifications
You must be signed in to change notification settings - Fork 99
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
125 Data connection already open; Transfer starting. #29
Comments
Hello , I have same issue with Windows NT IIS ftp server which does not seem to support MLSD : The Walk function then tries LIST but does not parse correctly what came back I can help with testing the bugfix if needed Regards, Colm |
hope you can help me. How to operate it, how to contact you |
commenting out the following in the List function, in file ftp.go
|
same issue here, listing the remote files gives the same error as :
|
Try to use only ftp.Retr(pathtofile "f.zip", func(r io.Reader)) and remove ftp.Cwd & ftp.Pwd |
`package main
import (
//"crypto/tls"
"fmt"
"io"
"os"
)
func main() {
var err error
var ftp *goftp.FTP
var server = "ftpserver"
}`
use ftp to download zip file,has this error
125 Data connection already open; Transfer starting.
The text was updated successfully, but these errors were encountered: