以文本方式查看主题 - 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=180289) |
-- 作者:fivetable -- 发布时间:2022/10/12 15:10:00 -- [求助][讨论]从FTP上下载文件的语法的连接问题 Dim ming As String For i As Integer = 0 To dls.Count - 1 If i = dls.Count - 1 Then ming = dls(dls.Count - 1) End If Next \'Output.Show(ming) Dim ming2 As String = "\\" & ming \'If ftp1.Download(ming2, "D:\\仓库系统相关\\111.bak", True) = True Then \'正常执行 If ftp1.Download("\\" & ming & ", "D: \\ 仓库系统相关 \\ 111.bak", True) = True Then Messagebox.show("下载完成!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information) Else Messagebox.show("下载失败!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information) End If 问题在于 ftp1.Download("\\" & ming & " 这写法在这里就出错,难道在这里不能这么写吗?
|
-- 作者:有点蓝 -- 发布时间:2022/10/12 15:28:00 -- If ftp1.Download("\\" & ming , "D: \\ 仓库系统相关 \\ 111.bak", True) = True Then |
-- 作者:fivetable -- 发布时间:2022/10/12 15:46:00 -- 我随便在几处乱加了 “ 。搞定了 ftp1.Download("\\" & ming & "", 加个双引号,红色的双引号就是,完美搞定!
|