Foxtable(狐表)用户栏目专家坐堂 → [求助]


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

主题:[求助]

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


加好友 发短信
等级:贵宾 帖子:39310 积分:196782 威望:0 精华:1 注册:2015/4/25 9:23:00
  发帖心情 Post By:2015/5/11 18:26:00 [显示全部帖子]

Dim dlg As new  FolderBrowserDialog

If dlg.ShowDialog = DialogResult.Ok Then
    For Each file As String In FileSys.GetFiles(dlg.SelectedPath)
        Dim finfo As new FileInfo(file)
        Dim fdr As DataRow = DataTables("表A").Find("第一列 = '" & finfo.Name.replace(finfo.Extension, "") & "'")
        If fdr Is Nothing Then
            fdr = DataTables("表A").AddNew
            fdr("第一列") = finfo.Name.replace(finfo.Extension, "")
        End If
        fdr("第三列") = finfo.Name
        FileSys.CopyFile(file, ProjectPath & "Attachments/" & finfo.name)
    Next
End If


 回到顶部