Foxtable(狐表)用户栏目专家坐堂 → ftp文件夹为空上传不了图片


  共有1704人关注过本帖树形打印复制链接

主题:ftp文件夹为空上传不了图片

帅哥哟,离线,有人找我吗?
有点甜
  1楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:版主 帖子:85326 积分:427815 威望:0 精华:5 注册:2012/10/18 22:13:00
  发帖心情 Post By:2017/7/12 15:48:00 [显示全部帖子]

Dim ftp1 As New FTPClient
ftp1.Host= "192.168.1.206"
ftp1.Account = "lan"
ftp1.Password = "232400"
ftp1.Port = 2121
ftp1.RootDir = "\tp"
Dim nm As String = Tables(e.Form.Name & "_table1").Current("_identify") & ".jpg"
Dim pth As String = ProjectPath & "pictures\" & nm

Dim files = ftp1.GetFileList("\tp")
If files.contains(nm) Then
    msgbox("同名")
Else
    msgbox("不存在")
    If ftp1.Upload(pth,"\tp\" & nm) = False Then
        Messagebox.show("上传失败!","提示",MessageBoxButtons.OK,MessageBoxIcon.Information)
    End If
end if


 回到顶部