帮助文件:开发指南>网络相关>FTPClient(http://www.foxtable.com/webhelp/scr/1410.htm)中FTP服务器中文件地址符"/"描述错误.
例如:
Dim
ftp1 As
new
ftpclient
ftp1.host="196.128.143.28"
ftp1.Account =
"foxuser"
ftp1.password =
"138238110"
If ftp1.Download("\photo\Desert.jpg","c:\data\Desert.jpg")
= True Then
Messagebox.show("下载完成!","提示",MessageBoxButtons.OK,MessageBoxIcon.Information)
Else
Messagebox.show("下载失败!","提示",MessageBoxButtons.OK,MessageBoxIcon.Information)
End If
上述代码"\photo\Desert.jpg"应为"/photo/Desert.jpg"
该节帮助文档都出现的类似错误,望修改