Foxtable(狐表)用户栏目专家坐堂 → 图片文件判断是否重复


  共有3359人关注过本帖平板打印复制链接

主题:图片文件判断是否重复

美女呀,离线,留言给我吧!
nuonuo384
  1楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:幼狐 帖子:63 积分:866 威望:0 精华:0 注册:2020/2/4 9:55:00
图片文件判断是否重复  发帖心情 Post By:2020/3/11 15:43:00 [只看该作者]

老师:

     我在窗口中添加按钮,点击后在指定列表框添加附件,代码如下。  因为如果子目录中同名会覆盖,怎样判断该名称是否存在?

Dim ftp1 As New FtpClient
Dim sourceFileName, destinationFileName As String
ftp1.Host = "47.102.150.86"
ftp1.Account = "test"
ftp1.Password = "67963270"
ftp1.UTF8 = True
If ftp1.DirExists("\" & user.name & "\" &  Date.Today ) = False Then
    ftp1.MakeDir("\" & user.name & "\" &  Date.Today )
End If
If dlg.showdialog = dialogresult.ok Then
    For Each fl As String In dlg.FileNames
        flname = fl.Substring(fl.LastIndexOf("\")+1)
        flname = "\" & user.name & "\" &  Date.Today & "\"  & flname 
        ls = ls & "|" & flname & "|"
        lst1.ComboList = ls
        If ftp1.Upload(fl, flname) = True Then
            Messagebox.show("上传完成!","提示",MessageBoxButtons.OK,MessageBoxIcon.Information)
        Else
            Messagebox.show("上传失败!","提示",MessageBoxButtons.OK,MessageBoxIcon.Information)
        End If
    Next
End If



 回到顶部