复制代码 代码如下:

option explicit

dim fpath,fso,logfile,fwrite

fpath=inputbox (“输入目标文件夹“,”文件处理器”)

logfile=”logfile.txt”

set fso=createobject(“scripting.filesystemobject”)

Set fwrite=fso.opentextfile(logfile,8,true)

getfilename fpath

fwrite.close

Set fso=Nothing

MsgBox “命令执行完成!”

function getfilename(path)

dim file,folder,sfolder,fname,subfolder,Files

if not fso.folderexists(path) then

set fso=nothing

msgbox “目标文件夹不存在!”

exit function

end if

set folder=fso.getfolder(path)

set files=folder.files

for each file in Files

fwrite.writeline path&”\”&file.name

If file.DateLastModified < Now – 10 Then ‘判断是否超过10天

fso.DeleteFile(file)

‘Wscript.Echo file

End If

next

set subfolder=folder.subfolders

for each sfolder in subfolder

fwrite.writeline path&”\”&sfolder.name

If sfolder.DateCreated < Now – 10 Then ‘判断是否超过10天

fso.deletefolder(sfolder)

‘Wscript.Echo file

End If

next

end function

将上面代码存为vbs文件即可使用。
您可能感兴趣的文章:

声明:本站(华域联盟www.cnhackhy.com)所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。