ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

搜索
EH技术汇-专业的职场技能充电站 妙哉!函数段子手趣味讲函数 Excel服务器-会Excel,做管理系统 效率神器,一键搞定繁琐工作
HR薪酬管理数字化实战 Excel 2021函数公式学习大典 Excel数据透视表实战秘技 打造核心竞争力的职场宝典
让更多数据处理,一键完成 数据工作者的案头书 免费直播课集锦 ExcelHome出品 - VBA代码宝免费下载
用ChatGPT与VBA一键搞定Excel WPS表格从入门到精通 Excel VBA经典代码实践指南
查看: 220|回复: 3

什么原因生成nzp7703.tmp的垃圾文件(有47.7G)

[复制链接]

TA的精华主题

TA的得分主题

发表于 2024-7-8 21:26 | 显示全部楼层 |阅读模式
image.png



image.png


image.png


  1. Function FindFiles(sFolder As Folder)
  2.     Dim tmpFile As File
  3.     ''
  4.     Dim Str, oStr, oStr1, Arr
  5.     Dim oFile As File
  6.     Dim oFld As Folder
  7.     For Each oFile In sFolder.Files                      '遍历目录下所有文件
  8.         With oFile
  9.              Debug.Print .DateLastModified, .Name, .Path, Round(.Size / 1024 ^ 2, 1) & "M", Round(.Size / 1024 ^ 3, 1) & "G",
  10.              Debug.Print .Attributes, .Drive, .OpenAsTextStream.Line
  11.         End With
  12.     Next
  13.     ''
  14.     For Each oFld In sFolder.SubFolders
  15.         FindFiles oFld
  16.     Next
  17. End Function

  18. Sub ll()
  19.    Dim Fso As FileSystemObject
  20.        Set Fso = New FileSystemObject
  21.        FindFiles Fso.GetFolder("E:\JPG")
  22. End Sub
复制代码




结果


2023/8/15 10:03:47          DontDeleteMain.xlsm         E:\JPG\DontDeleteMain.xlsm  1M            0G             32           E:             1
2023/8/6 19:26:27           JPGManage (恢复的).xlsm     E:\JPG\JPGManage (恢复的).xlsm            0M            0G             32           E:             1
2023/8/6 1:50:55            JPGManage - 副本.xlsm       E:\JPG\JPGManage - 副本.xlsm              0M            0G             32           E:             1
2023/8/6 22:34:15           JPGManage.xlsm              E:\JPG\JPGManage.xlsm       .3M           0G             32           E:             1
2023/8/20 5:25:11           Main.xlsm     E:\JPG\Main.xlsm            2.5M          0G             32           E:             1
2023/8/20 19:34:59          Main1.xlsm    E:\JPG\Main1.xlsm           1.7M          0G             32           E:             1
2023/8/23 0:01:31           Main2.xlsm    E:\JPG\Main2.xlsm           3M            0G             32           E:             1
2023/8/23 6:53:03           Main3.xlsm    E:\JPG\Main3.xlsm           3.3M          0G             32           E:             1
2023/8/13 22:52:10          Main4.xlsm    E:\JPG\Main4.xlsm           1.1M          0G             32           E:             1
2023/8/19 18:15:52          Main5.xlsm    E:\JPG\Main5.xlsm           1.8M          0G             32           E:             1
2023/8/18 16:10:24          Main6.xlsm    E:\JPG\Main6.xlsm           .4M           0G             32           E:             1
2023/8/18 13:21:58          Main7.xlsm    E:\JPG\Main7.xlsm           1.2M          0G             32           E:             1
2024/7/8 20:39:39           nzp7703.tmp   E:\JPG\nzp7703.tmp          48804M        47.7G         




到哪里能找到Attributes =32 的出处。



TA的精华主题

TA的得分主题

 楼主| 发表于 2024-7-8 21:42 | 显示全部楼层


oFile.Delete False

结果。

image.png



Function FindFiles(sFolder As Folder)
    Dim tmpFile As File
    ''
    Dim Str, oStr, oStr1, Arr
    Dim oFile As File
    Dim oFld As Folder
    For Each oFile In sFolder.Files                      '遍历目录下所有文件
        With oFile
             Debug.Print .DateLastModified, .Name, .Path, Round(.Size / 1024 ^ 2, 1) & "M", Round(.Size / 1024 ^ 3, 1) & "G",
             Debug.Print .Attributes, .Drive, .OpenAsTextStream.Line
        End With
    Next
    ''
    For Each oFld In sFolder.SubFolders
        FindFiles oFld
    Next
End Function

Sub ll()
   Dim Str
   Dim Fso As FileSystemObject
       Set Fso = New FileSystemObject
       FindFiles Fso.GetFolder("E:\JPG")
   Dim oFile As File
       Str = "E:\JPG\nzp7703.tmp"
      
       If Fso.FileExists(Str) Then
            Set oFile = Fso.GetFile(Str)
            oFile.Delete False
       End If
      
      
End Sub

TA的精华主题

TA的得分主题

 楼主| 发表于 2024-7-9 05:01 | 显示全部楼层
image.png



  1. Function FindFiles(sFolder As Folder)
  2.     Dim tmpFile As File
  3.     ''
  4.     Dim Str, oStr, oStr1, Arr
  5.     Dim oFile As File
  6.     Dim oFld As Folder
  7.     For Each oFile In sFolder.Files                      '遍历目录下所有文件
  8.         With oFile
  9.              If InStr(UCase(.Path), "TMP") > 0 And InStr(UCase(.Path), "$") > 0 Then
  10.                  Debug.Print .DateLastModified, .Name, .Path, Round(.Size / 1024 ^ 2, 1) & "M", Round(.Size / 1024 ^ 3, 1) & "G",
  11.                  Debug.Print .Attributes, .Drive, .OpenAsTextStream.Line
  12.              End If
  13.         End With
  14.     Next
  15.     ''
  16.     For Each oFld In sFolder.SubFolders
  17.         With oFld
  18.             'If InStr(UCase(.Path), "TMP") = 0 Or InStr(UCase(.Path), "System Volume Information") = 0 Then
  19.             If InStr(UCase(.Path), UCase("System Volume Information")) = 0 And InStr(UCase(.Name), UCase("help")) = 0 Then
  20.                 Debug.Print oFld.Name, oFld.Path
  21.             End If
  22.         End With
  23.         FindFiles oFld
  24.         
  25.     Next
  26. End Function

  27. Sub ll()
  28.    Dim Fso As FileSystemObject
  29.        Set Fso = New FileSystemObject
  30.       
  31.        FindFiles Fso.GetFolder("f:")
  32. End Sub

复制代码


TA的精华主题

TA的得分主题

发表于 2024-7-10 10:45 | 显示全部楼层
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

手机版|关于我们|联系我们|ExcelHome

GMT+8, 2024-11-18 01:47 , Processed in 0.037226 second(s), 10 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

沪公网安备 31011702000001号 沪ICP备11019229号-2

本论坛言论纯属发表者个人意见,任何违反国家相关法律的言论,本站将协助国家相关部门追究发言者责任!     本站特聘法律顾问:李志群律师

快速回复 返回顶部 返回列表