Foxtable(狐表)用户栏目专家坐堂 → 关于删除文件夹中不符合条件的文件


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

主题:关于删除文件夹中不符合条件的文件

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


加好友 发短信
等级:版主 帖子:85326 积分:427815 威望:0 精华:5 注册:2012/10/18 22:13:00
  发帖心情 Post By:2019/2/27 23:06:00 [显示全部帖子]

参考

 

Dim dir As new io.DirectoryInfo("d:\")
For Each File As object In dir.GetFiles
    msgbox(file.name)
    'file.delete
Next


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


加好友 发短信
等级:版主 帖子:85326 积分:427815 威望:0 精华:5 注册:2012/10/18 22:13:00
  发帖心情 Post By:2019/2/28 10:04:00 [显示全部帖子]

Dim dir As new io.DirectoryInfo("d:\")
Dim t As Table = Tables("表A")
For Each File As object In dir.GetFiles
    If t.DataTable.Find("第一列 like '%" & file.name & "%'") Is Nothing Then
        msgbox(file.name)
        'file.delete
    End If
Next

 


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


加好友 发短信
等级:版主 帖子:85326 积分:427815 威望:0 精华:5 注册:2012/10/18 22:13:00
  发帖心情 Post By:2019/2/28 10:21:00 [显示全部帖子]

以下是引用裴保民在2019/2/28 10:20:00的发言:
怎么还是删除了所有的照片呢?

 

1、贴出代码;

 

2、截图或者具体实例说明。


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


加好友 发短信
等级:版主 帖子:85326 积分:427815 威望:0 精华:5 注册:2012/10/18 22:13:00
  发帖心情 Post By:2019/2/28 10:37:00 [显示全部帖子]

Dim dir As new io.DirectoryInfo(ProjectPath & "照片\客户身份证/")
Dim t As Table = Tables("客户档案")
For Each File As object In dir.GetFiles
    Dim contains = False
    For Each r As Row In t.Rows
        If r("照片原始名") > "" AndAlso file.name.contains(r("照片原始名")) = True Then
            contains = True
            Exit For
        End If
    Next
    If contains = False Then
        msgbox(file.name)
'        file.delete
    End If
Next

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


加好友 发短信
等级:版主 帖子:85326 积分:427815 威望:0 精华:5 注册:2012/10/18 22:13:00
  发帖心情 Post By:2019/2/28 11:18:00 [显示全部帖子]

Dim dir As new io.DirectoryInfo(ProjectPath & "照片\客户身份证/")
Dim t As Table = Tables("客户档案")
For Each File As object In dir.GetFiles
    Dim contains = False
    For Each r As Row In t.Rows
        If r("照片原始名") > "" AndAlso file.name.contains(r("照片原始名")) = True Then
            contains = True
            Exit For
        End If
    Next
    If contains = False Then
        msgbox(file.name)
        If FileSys.DirectoryExists("C:\Users\Administrator\Desktop\照片\复制照片") = False Then
            FileSys.CreateDirectory("C:\Users\Administrator\Desktop\照片\复制照片")
        End If
        file.copyto("C:\Users\Administrator\Desktop\照片\复制照片\" & file.name, True)
        'file.delete
    End If
Next

 回到顶部