复制代码 代码如下:
Const FilePath = "E:\log" '定义目录
Set FSO = CreateObject("Scripting.FileSystemObject")
ShowSubfolders FSO.GetFolder(filepath)
Sub ShowSubFolders(Folder)
For Each Subfolder in Folder.SubFolders
Set Files = subfolder.Files
If Files.Count <> 0 Then
For Each File In Files
If File.DateLastModified < Now - 30 Then '判断是否超过30天
FSO.DeleteFile(Subfolder.Path & "\" & File.Name) '删除
'Wscript.Echo Subfolder.Path & "\" & File.Name '显示
End If
Next
End If
ShowSubFolders Subfolder
Next
End Sub
Const FilePath = "E:\log" '定义目录
Set FSO = CreateObject("Scripting.FileSystemObject")
ShowSubfolders FSO.GetFolder(filepath)
Sub ShowSubFolders(Folder)
For Each Subfolder in Folder.SubFolders
Set Files = subfolder.Files
If Files.Count <> 0 Then
For Each File In Files
If File.DateLastModified < Now - 30 Then '判断是否超过30天
FSO.DeleteFile(Subfolder.Path & "\" & File.Name) '删除
'Wscript.Echo Subfolder.Path & "\" & File.Name '显示
End If
Next
End If
ShowSubFolders Subfolder
Next
End Sub
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件!
如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
内蒙古资源网 Copyright www.nmgbbs.com
暂无“一个可以删除指定天数文件的vbs脚本”评论...