以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- 问个ftp的问题 (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=57599) |
-- 作者:blackzhu -- 发布时间:2014/9/27 14:18:00 -- 问个ftp的问题 Dim e As Object = Args(0) Dim piv As WinForm.PictureViewer = e.Form.Controls(Args(1)) Dim ftp As New FTPClient ftp.host= GetConfigValue("IP地址","") ftp.Port= GetConfigValue("端口","") ftp.Account = GetConfigValue("用户名","") ftp.password = GetConfigValue("密码","") piv.Remote=True piv.FTPclient = ftp piv.BindingField = Args(2) & "." & Args(3) ftp.ChangeDir("\\" & Args(4)) 我这样增加图片的时候为啥不能打开到指定的文件夹内
|
-- 作者:Bin -- 发布时间:2014/9/27 14:29:00 -- 增加文件事件 Messagebox.Show("当前目录: " & ftp1.Currentdir) 看看当前目录是啥 |