以文本方式查看主题

-  Foxtable(狐表)  (http://www.foxtable.com/bbs/index.asp)
--  BUG收集  (http://www.foxtable.com/bbs/list.asp?boardid=12)
----  帮助文件中开发指南>网络相关>FTPClient中错误  (http://www.foxtable.com/bbs/dispbbs.asp?boardid=12&id=87707)

--  作者:dszqiooe
--  发布时间:2016/7/17 23:11:00
--  帮助文件中开发指南>网络相关>FTPClient中错误
帮助文件:开发指南>网络相关>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"
该节帮助文档都出现的类似错误,望修改