如下,请看我这做一个下载的功能,但运行就说下载失败,请问高手,我这代码那有错
Dim ftp1 As new ftpclient
ftp1.host="121.42.100.247"
ftp1.Account = "qxw1192590206"
ftp1.password = "ubss987654"
If ftp1.Download("元初软件著作权扫描件.jpg","d:\元初软件著作权扫描件.jpg") = True Then
Messagebox.show("下载完成!","提示",MessageBoxButtons.OK,MessageBoxIcon.Information)
Else
Messagebox.show("下载失败!","提示",MessageBoxButtons.OK,MessageBoxIcon.Information)
End If