以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  上传文件  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=67155)

--  作者:seal51
--  发布时间:2015/4/19 13:58:00
--  上传文件


图片点击可在新窗口打开查看此主题相关图片如下:ftpdoc.png
图片点击可在新窗口打开查看

 

上传的代码

 

Dim ftp As New FtpClient
ftp.Host="xxx.29.38.xxx"
ftp.Account = "tuftp"
ftp.Password = "********"
ftp.port = "20"

Dim fp As String = "\\tuzhi\\sctuzhi" & Tables("图纸列表").current("图号")
Dim sts As List(of String) = ftp.GetFileList(fp)   \'获取当前目录的文件列表
If sts.Count >0 Then
    For Each st As String In sts
        If st = fname Then
            MessageBox.Show("服务器上存在同名文件!","提醒")
            Return  \'这里简化了操作, 可以自己做是否覆盖的功能
        End If
    Next
    e.form.text = "scftp管理器  文件上传中...."
    If ftp.upload(dlg.FileName,fp & "\\" & fname) = True Then   \'若成功上传
        Functions.Execute("刷新LISTVIEW")\'这个是自定义函数
        e.Form.text = "scftp管理器"
        MessageBox.Show("上传成功","提醒")
    Else
        MessageBox.Show("上传失败","提醒")
        e.Form.text = "scftp管理器"
    End If
End If

End If


--  作者:seal51
--  发布时间:2015/4/20 17:03:00
--  

没老师回复


--  作者:Bin
--  发布时间:2015/4/20 17:04:00
--  
http://www.foxtable.com/help/topics/2718.htm