Foxtable(狐表)用户栏目专家坐堂 → [求助]自定义ftp上传文件的问题


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

主题:[求助]自定义ftp上传文件的问题

帅哥,在线噢!
有点蓝
  1楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:超级版主 帖子:110554 积分:562660 威望:0 精华:9 注册:2015/6/24 9:21:00
  发帖心情 Post By:2021/9/6 11:49:00 [显示全部帖子]

Dim fn As String = e.Form.Controls("TextBox7").text
msgbox(fn)
If fn = "" Then
    MessageBox.Show("请输入委保合同编号!")
    Return
End If
Dim dlg As New OpenFileDialog '定义一个新的OpenFileDialog
dlg.Filter= "Excel文件|*.xls|Word文件|*.doc|Access文件|*.mdb" '设置筛选器
If dlg.ShowDialog = DialogResult.Ok Then '如果用户单击了确定按钮
    Dim ftp1 As New FtpClient
    ftp1.Host="0.0.0.0"
    ftp1.Account = "F"
    ftp1.Password = "F"
    If  ftp1.DirExists("\" & fn) = False Then
        If ftp1.MakeDir("\" & fn) = False Then
            MessageBox.Show("目录创建失败!")
            Return
        End If
    End If
    If ftp1.Upload(dlg.FileName,"\" & fn & "\" & FileSys.GetName(dlg.FileName)) = True Then
        Messagebox.show("上传完成!","提示",MessageBoxButtons.OK,MessageBoxIcon.Information)
    Else
        Messagebox.show("上传失败!","提示",MessageBoxButtons.OK,MessageBoxIcon.Information)
    End If
End If

 回到顶部