Foxtable(狐表)用户栏目专家坐堂 → [求助]文件名集合赋值指定列


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

主题:[求助]文件名集合赋值指定列

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


加好友 发短信
等级:超级版主 帖子:13837 积分:69650 威望:0 精华:0 注册:2016/11/1 14:42:00
  发帖心情 Post By:2017/5/12 16:08:00 [显示全部帖子]

For Each dr As DataRow In DataTables("表A").DataRows   '清除列内容
    dr("文件名") = Nothing
Next

'Dim dlg As New FolderBrowserDialog   '打开目录
'If dlg.ShowDialog = DialogResult.Ok Then
'For Each file As String In FileSys.GetFiles(dlg.SelectedPath)
For Each file As String In FileSys.GetFiles("g:\")    '打开指定目录
    file = FileSys.GetName(file)
    Dim idx = file.LastIndexOf(".")    '去掉文件后缀
    If idx >= 0 Then
        file = file.SubString(0, idx)
    End If
   
    Dim fileInfo As New System.IO.FileInfo(file)
    Dim fdr As DataRow = DataTables("表A").Find("文件名 is null")
    If fdr Is Nothing Then
        fdr = DataTables("表A").AddNew   '添加行
    End If
    fdr("文件名") = file
    'fdr("创建时间") = fileInfo.CreationTime
    'fdr("修改时间") = fileInfo.LastWriteTime
Next
'End If


 回到顶部
帅哥哟,离线,有人找我吗?
有点色
  2楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:超级版主 帖子:13837 积分:69650 威望:0 精华:0 注册:2016/11/1 14:42:00
  发帖心情 Post By:2017/5/12 16:18:00 [显示全部帖子]

For Each file As String In FileSys.GetFiles("d:\")    '打开指定目录

 回到顶部